summaryrefslogtreecommitdiff
path: root/lib/app.py
diff options
context:
space:
mode:
authorSanto Cariotti <sancn@live.com>2017-08-22 11:54:40 +0200
committerSanto Cariotti <sancn@live.com>2017-08-22 11:54:40 +0200
commit6a76576558adc8cf15d7b44b59f0c1dc00c5b729 (patch)
treeffa69784752fe7376480d7fef7c01df5f3dccd6d /lib/app.py
parent19701a38439cc45c52b3c95c05b9a74763d7f1a3 (diff)
deleted redis conf
Diffstat (limited to 'lib/app.py')
-rw-r--r--lib/app.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/app.py b/lib/app.py
index c3ec9a7..5e0b3d8 100644
--- a/lib/app.py
+++ b/lib/app.py
@@ -1,4 +1,4 @@
-from classes import r, clear, YELLOW, BLACK, GREY
+from classes import clear, YELLOW, BLACK, GREY
from commands import Commands
from listcommands import ListCommands
import os.path
@@ -24,12 +24,12 @@ class Stout(Commands):
"""
try:
with open(config['path'], 'rb') as fin:
- user = fin.readline()
+ user = fin.readline().split()
- if user == '':
+ if user[0] == '':
return ''
else:
- return user.decode('utf-8')
+ return user[0].decode('utf-8')
except Exception:
return ''