Fixed a typo in contrib/menusystem. Resolves #629.

This commit is contained in:
Griatch 2015-02-12 16:21:11 +01:00
parent f1b6a4e212
commit 7395a772f9

View file

@ -497,7 +497,7 @@ def prompt_choice(caller, question="", prompts=None, choicefunc=None, force_choo
count = 0
choices = ""
commands = []
for choice in utils.makeiter(prompts):
for choice in utils.make_iter(prompts):
count += 1
choices += "\n{lc%d{lt[%d]{le %s" % (count, count, choice)