From 12cb3c569753b867747559a61ea4be85837876c1 Mon Sep 17 00:00:00 2001 From: Matthew Vernon Date: Tue, 21 Aug 2018 16:47:07 +0100 Subject: [PATCH] correct typo (missing : ) --- commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.py b/commands.py index fbffa9f..5a7cc94 100755 --- a/commands.py +++ b/commands.py @@ -578,7 +578,7 @@ def getTweet(urlstring,twitapi,inclusion=False,recurlvl=0): if expand_included_tweets: if rv.hostname == 'twitter.com' and re.search(r'status/\d+',rv.path): - if recurlvl > 2 + if recurlvl > 2: stringsout = [ "{{ Recursion level too high }}" ] + stringsout else: quotedtweet = getTweet(toReplace, twitapi, inclusion=True, recurlvl=recurlvl+1) # inclusion parameter limits recursion. -- 2.30.2