From f2e584d364fa9794d509dcb30512a1342fd4b817 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sun, 31 Dec 2017 12:37:53 +0100 Subject: fixed 'add' command --- lib/app.py | 6 ++++-- lib/commands.py | 3 --- 2 files changed, 4 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/app.py b/lib/app.py index ba8b5d6..721eec1 100644 --- a/lib/app.py +++ b/lib/app.py @@ -12,7 +12,7 @@ class Stout(Commands): def getName(self): word = ' (' + self.name + ' ) ' - if self.user == '': + if self.user == '|': return word else: return word + GREY + '(' + self.user + ') ' @@ -70,7 +70,9 @@ if __name__ == '__main__': cmd = '' if not os.path.isfile(config['path']): - open(config['path'], 'wb').close() + fo = open(config['path'], 'wb') + fo.write('|\n'.encode('utf-8')) + fo.close() while cmd != 'quit': try: diff --git a/lib/commands.py b/lib/commands.py index 3df279c..b0d07a3 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -89,9 +89,6 @@ class Commands(object): try: with open(co['path'], 'ab+') as fout: - if fout.readline().decode('utf-8') == '': - fout.write(('\n').encode('utf-8')) - fout.write((msg + '\n').encode('utf-8')) print('Ok') -- cgit v1.2.3-18-g5258