aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-06-26 01:09:42 +0800
committerzelig <viktor.tron@gmail.com>2014-06-26 01:09:42 +0800
commitbf57e9603b9ef2c96e8e6d7c3d22ea674392d56b (patch)
treed02679860904b48428d52842c8b68eaba7ed0433 /ethereal
parent096427c3b1a9bcd08bab11e06d4c5f0df65f0d9e (diff)
downloadgo-tangerine-bf57e9603b9ef2c96e8e6d7c3d22ea674392d56b.tar
go-tangerine-bf57e9603b9ef2c96e8e6d7c3d22ea674392d56b.tar.gz
go-tangerine-bf57e9603b9ef2c96e8e6d7c3d22ea674392d56b.tar.bz2
go-tangerine-bf57e9603b9ef2c96e8e6d7c3d22ea674392d56b.tar.lz
go-tangerine-bf57e9603b9ef2c96e8e6d7c3d22ea674392d56b.tar.xz
go-tangerine-bf57e9603b9ef2c96e8e6d7c3d22ea674392d56b.tar.zst
go-tangerine-bf57e9603b9ef2c96e8e6d7c3d22ea674392d56b.zip
add newline to help usage msg
Diffstat (limited to 'ethereal')
-rw-r--r--ethereal/flags.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/flags.go b/ethereal/flags.go
index 5ab4c80e2..7e83e355f 100644
--- a/ethereal/flags.go
+++ b/ethereal/flags.go
@@ -68,7 +68,7 @@ var defaultConfigFile = path.Join(defaultDataDir(), "conf.ini")
func Init() {
flag.Usage = func() {
- fmt.Fprintf(os.Stderr, "%s [options] [filename]:\noptions precedence: default < config file < environment variables < command line", os.Args[0])
+ fmt.Fprintf(os.Stderr, "%s [options] [filename]:\noptions precedence: default < config file < environment variables < command line\n", os.Args[0])
flag.PrintDefaults()
}