From: Matthew Vernon Date: Tue, 21 Aug 2018 15:47:07 +0000 (+0100) Subject: correct typo (missing : ) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~matthewv/git?p=irc.git;a=commitdiff_plain;h=12cb3c569753b867747559a61ea4be85837876c1 correct typo (missing : ) --- 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.