diff options
Diffstat (limited to 'ui/debug')
-rw-r--r-- | ui/debug/external.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/debug/external.go b/ui/debug/external.go index 8122b2a..faabbcc 100644 --- a/ui/debug/external.go +++ b/ui/debug/external.go @@ -34,7 +34,7 @@ func EnableExternal() { func ExtPrintf(text string, args ...interface{}) { if writer != nil { - fmt.Fprintf(writer, text + "\n", args...) + fmt.Fprintf(writer, text+"\n", args...) } } |