summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/app.py6
-rw-r--r--lib/commands.py3
2 files changed, 4 insertions, 5 deletions
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')