From 1451011e86dcbcaba2e43013ee86042ad27dc6b5 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Fri, 21 Jul 2017 11:05:47 +0200 Subject: it accepts only 1 user --- lib/app.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'lib/app.py') diff --git a/lib/app.py b/lib/app.py index f994863..31fd270 100644 --- a/lib/app.py +++ b/lib/app.py @@ -1,4 +1,4 @@ -from classes import PersonalError, Colors, r, s, host, clear +from classes import PersonalError, Colors, r, clear from commands import Commands from listcommands import ListCommands @@ -13,16 +13,15 @@ class Stout(Commands): if self.user == '': return word else: - return word + Colors.grey + '(' + self.user + ':' + host + ') ' + return word + Colors.grey + '(' + self.user + ') ' @staticmethod def username(): """ - if users exists, return username:0.0.0.0, else return an empty string. - there is a set into user:HOST with a variable called name + if users exists, return username, else return an empty string """ - if r.hget('user:'+host, 'name') is not None: - return r.hget('user:'+host, 'name').decode('utf-8') #default is a byte + if r.get('user') is not None: + return r.get('user').decode('utf-8') #default is a byte else: return '' @@ -69,5 +68,4 @@ if __name__ == '__main__': app.action(cmd) r.save() - s.close() clear() -- cgit v1.2.3-18-g5258