From 49d7d39064b10d30fb240a0f8149819857c5e7ac Mon Sep 17 00:00:00 2001 From: Tyler Treat Date: Thu, 26 Nov 2015 20:25:28 -0600 Subject: [PATCH] Fix error messaging --- throttler/throttler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/throttler/throttler.go b/throttler/throttler.go index 63fe321..3a95858 100644 --- a/throttler/throttler.go +++ b/throttler/throttler.go @@ -60,7 +60,7 @@ func setup(t throttler, cfg *Config) { } if err := t.setup(cfg); err != nil { - fmt.Println("I couldn't setup the packet rules: %s", err.Error()) + fmt.Println("I couldn't setup the packet rules:", err.Error()) os.Exit(1) }