We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 678a808 commit 856eb25Copy full SHA for 856eb25
pyGBot/Plugins/games/fluxxfiles/game.py
@@ -13,7 +13,7 @@ def pretty_print_list(L, use_both=False):
13
return "%sand %s" % ((('%s, ' * (len(L)-1)) % tuple(L[:-1])), L[-1])
14
15
def pp_index(L, start=1, use_both=False):
16
- return pretty_print_list(["%d: %s" % (i, v) for i, v in zip(count(start), L), use_both])
+ return pretty_print_list(["%d: %s" % (i, v) for i, v in zip(count(start), L)], use_both)
17
18
def plural(L):
19
return "" if len(L) == 1 else "s"
0 commit comments