diff options
author | mathieui <mathieui@mathieui.net> | 2019-08-24 14:12:40 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2019-08-24 14:12:40 +0200 |
commit | ea5977da4ae11e19064c4acb8b9ff2be199d6ada (patch) | |
tree | 92f7fc6ebfcf950a189999f376a556295d584861 | |
parent | cbc460106ff9ebb011be7e2643a2682e00080cad (diff) | |
download | poezio-ea5977da4ae11e19064c4acb8b9ff2be199d6ada.tar.gz poezio-ea5977da4ae11e19064c4acb8b9ff2be199d6ada.tar.bz2 poezio-ea5977da4ae11e19064c4acb8b9ff2be199d6ada.tar.xz poezio-ea5977da4ae11e19064c4acb8b9ff2be199d6ada.zip |
Fix /self
-rw-r--r-- | poezio/core/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/commands.py b/poezio/core/commands.py index 7112cfda..eff50a29 100644 --- a/poezio/core/commands.py +++ b/poezio/core/commands.py @@ -1088,7 +1088,7 @@ class CommandCore: info = ('Your JID is %s\nYour current status is "%s" (%s)' '\nYour default nickname is %s\nYou are running poezio %s' % (jid, message if message else '', show - if show else 'available', nick, config_opts.version)) + if show else 'available', nick, config_opts.custom_version)) self.core.information(info, 'Info') @command_args_parser.ignored |