diff options
author | Santo Cariotti <sancn@live.com> | 2017-09-17 14:11:07 +0200 |
---|---|---|
committer | Santo Cariotti <sancn@live.com> | 2017-09-17 14:11:07 +0200 |
commit | ed348458515a1f678b914295bfd423623aef2ad4 (patch) | |
tree | b5e40f8bdc3ae9988b8bb3ccda5c19dc7e217552 /lib | |
parent | 53d6bde7ee3b0a012f7d4111c4478f61aceb7955 (diff) | |
parent | 87efb422b03511c32b4f0087bac231a6c23b21d4 (diff) |
Merge branch 'master' into origin/dev
Diffstat (limited to 'lib')
-rw-r--r-- | lib/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ class Stout(Commands): try: with open(config['path'], 'rb') as fin: user = fin.readline().split() - if user[0] == '': + if user[0] is '': return '' else: return user[0].decode('utf-8') |