summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2020-11-08 16:04:25 +0000
committerJoe Robinson <joe@lc8n.com>2020-11-08 16:04:25 +0000
commit28d2655da1b93b5e5ca8e4b9bde87023b73734a5 (patch)
treec671877d2a9c8bfce2f7b866c3f523fb0f5fcee6
parent1ad7f1eb2e8f00ce63d3c389c900cf4dcf699233 (diff)
parent1bbb78e1e164cda9d2ba882653423504069106c3 (diff)
Merge branch 'master' into 'master'
Remove refrence to python three renamed it to int so we're all good! See merge request CarpNet/wikiquery!4
-rwxr-xr-xwikiquery2
1 files changed, 1 insertions, 1 deletions
diff --git a/wikiquery b/wikiquery
index ffbd1c7..0851a4b 100755
--- a/wikiquery
+++ b/wikiquery
@@ -86,7 +86,7 @@ def main():
if args:
topic = args.pop(0)
- while len(args) > 0 and not(isinstance(args[0], (int,long))):
+ while len(args) > 0 and not(isinstance(args[0], (int))):
topic += " " + args.pop(0)
index = int(args.pop(0)) if args else None