diff options
author | Fbenas <philbeansburton@gmail.com> | 2020-11-08 16:01:21 +0000 |
---|---|---|
committer | Fbenas <philbeansburton@gmail.com> | 2020-11-08 16:01:21 +0000 |
commit | 1bbb78e1e164cda9d2ba882653423504069106c3 (patch) | |
tree | c671877d2a9c8bfce2f7b866c3f523fb0f5fcee6 | |
parent | 3275bac8b4b8edc66d58541e32946fe2dd29732a (diff) |
Remove refrence to python three renamed it to int so we're all good!
-rwxr-xr-x | wikiquery | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |