aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-05-22 19:34:30 +0100
committerGravatar jesopo2019-05-22 19:34:30 +0100
commit02ddb85167634e2005e69f876a6801d58c759b88 (patch)
treeab4c09116de2be6b9f2f8621624c4e9cb1cd8a3f /modules
parent`url_match` -> `event["match"]` (diff)
signature
Typo, `taret` -> `target`
Diffstat (limited to 'modules')
-rw-r--r--modules/tweets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tweets.py b/modules/tweets.py
index 55cf28e4..9b879d51 100644
--- a/modules/tweets.py
+++ b/modules/tweets.py
@@ -50,7 +50,7 @@ class Module(ModuleManager.BaseModule):
tweet = None
else:
if target.startswith("@"):
- taret = target[1:]
+ target = target[1:]
try:
tweet = twitter_object.statuses.user_timeline(
screen_name=target, count=1)[0]