summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFBeans <phil@pgburton.com>2020-11-12 20:15:13 +0000
committerFBeans <phil@pgburton.com>2020-11-12 20:15:13 +0000
commit6aa1ba47a2f02d64d7b8b1d332a402956fc18cee (patch)
tree9bf9c411677aac8d03cba6cb8857b6e4672f468e
parentfea55856a9b2e24820ef73869bfb47079bf5fe1c (diff)
Just show the user the real indexes (starting from 0). This fixes the need to change anything
-rwxr-xr-xwikiquery4
1 files changed, 2 insertions, 2 deletions
diff --git a/wikiquery b/wikiquery
index 948d850..d133ac1 100755
--- a/wikiquery
+++ b/wikiquery
@@ -12,7 +12,7 @@ version = "0.1.7"
def stringify(o):
if isinstance(o, list):
output = []
- for i, item in enumerate(o, 1):
+ for i, item in enumerate(o, 0):
output.append("%s: %s" % (i, item))
return ' %s' % ', '.join(output)
@@ -89,7 +89,7 @@ def main():
while len(args) > 0 and not(args[0].isdigit()):
topic += " " + args.pop(0)
- index = int(args.pop(0)) -1 if args else None
+ index = int(args.pop(0)) if args else None
if options.search:
search(topic, index)