Commit e4c8afbe authored by user's avatar user

Few more previously unnoticed fixes

parent ee565b3c
...@@ -50,7 +50,7 @@ class Twint: ...@@ -50,7 +50,7 @@ class Twint:
else: else:
for user in self.feed: for user in self.feed:
self.count += 1 self.count += 1
username = user.find("a"["name"]) username = user.find("a")["name"]
await output.Username(username, self.config, self.conn) await output.Username(username, self.config, self.conn)
async def favorite(self): async def favorite(self):
...@@ -121,7 +121,7 @@ def Favorites(config): ...@@ -121,7 +121,7 @@ def Favorites(config):
run(config) run(config)
def Followers(config): def Followers(config):
config.Follwers = True config.Followers = True
run(config) run(config)
def Following(config): def Following(config):
......
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