From bb49de447689ae699c85909682abf29b192a5dec Mon Sep 17 00:00:00 2001 From: evilsocket Date: Tue, 21 Aug 2018 15:23:00 +0200 Subject: [PATCH] misc: small fix or general refactoring i did not bother commenting --- session/module.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/session/module.go b/session/module.go index 3d17995c..a7006d7b 100644 --- a/session/module.go +++ b/session/module.go @@ -160,7 +160,7 @@ func (m *SessionModule) SetRunning(running bool, cb func()) error { case <-done: return nil case <-time.After(10 * time.Second): - fmt.Printf("%s: Stopping module %s timed out.", core.Yellow(core.Bold("WARNING")), m.Name) + fmt.Printf("%s: Stopping module %s timed out.\n", core.Yellow(core.Bold("WARNING")), m.Name) } } }