Browse Source

set error message back to the way it was. was trying a change to track an error

pull/34/head
David Haukeness 5 years ago
parent
commit
8c0e6211aa
No known key found for this signature in database
GPG Key ID: A7F1091956853EF9
  1. 2
      cmdSet.go

2
cmdSet.go

@ -77,7 +77,7 @@ func loadFromToml() { @@ -77,7 +77,7 @@ func loadFromToml() {
printInfoF("Loading config from toml: $TEXT", messageAttachmentColor.stylize(configFile))
config, err := toml.LoadFile(configFile)
if err != nil {
printError(fmt.Sprintf("I Could not read config file: %+v", err))
printError(fmt.Sprintf("Could not read config file: %+v", err))
return
}
if config.Has("Emoji.unicodeSupport") {

Loading…
Cancel
Save