Commit 1638d5da authored by Francesco Poldi's avatar Francesco Poldi

Fix #449

Removed extra argument about location
parent fee1ff06
...@@ -130,7 +130,7 @@ class Twint: ...@@ -130,7 +130,7 @@ class Twint:
logme.debug(__name__+':Twint:notProfileFull') logme.debug(__name__+':Twint:notProfileFull')
for tweet in self.feed: for tweet in self.feed:
self.count += 1 self.count += 1
await output.Tweets(tweet, "", self.config, self.conn) await output.Tweets(tweet, self.config, self.conn)
async def tweets(self): async def tweets(self):
await self.Feed() await self.Feed()
...@@ -141,7 +141,7 @@ class Twint: ...@@ -141,7 +141,7 @@ class Twint:
logme.debug(__name__+':Twint:tweets:notLocation') logme.debug(__name__+':Twint:tweets:notLocation')
for tweet in self.feed: for tweet in self.feed:
self.count += 1 self.count += 1
await output.Tweets(tweet, "", self.config, self.conn) await output.Tweets(tweet, self.config, self.conn)
async def main(self, callback=None): async def main(self, callback=None):
......
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