Commit d60567f3 authored by Francesco Poldi's avatar Francesco Poldi

Fix #440

parent 6f1e395e
......@@ -47,7 +47,7 @@ class Twint:
if not os.path.exists(resumeFile):
return -1
with open(resumeFile, 'r') as rFile:
_init = rFile.readlines()[-1]
_init = rFile.readlines()[-1].strip('\n')
return _init
async def Feed(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment