forked from ticketfrei/ticketfrei
removed print of empty line in direct output
This commit is contained in:
parent
063d3b7869
commit
719685ce9c
|
@ -44,7 +44,7 @@ class RetootBot(object):
|
|||
line = "[" + time + "] "+ message + "\n"
|
||||
with open(self.logpath, 'a') as f:
|
||||
f.write(line)
|
||||
print line
|
||||
print line,
|
||||
|
||||
def register(self):
|
||||
self.client_id = os.path.join(
|
||||
|
|
|
@ -88,7 +88,7 @@ class RetweetBot(object):
|
|||
line = "[" + time + "] "+ message + "\n"
|
||||
with open(self.logpath, 'a') as f:
|
||||
f.write(line)
|
||||
print line
|
||||
print line,
|
||||
|
||||
def get_history(self, path):
|
||||
""" This counter is needed to keep track of your mentions, so you
|
||||
|
|
Loading…
Reference in a new issue