Skip to content

Commit

Permalink
Switch to ASCII-char for marking selected plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaiter committed Jan 5, 2014
1 parent 1cd6e70 commit c518420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spreads/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def _select_plugins(selected_plugins=None):
while True:
for pos, ext in enumerate(available_plugins, 1):
print(" {0} {1}: {2}"
.format('' if ext.name in selected_plugins else ' ',
.format('x' if ext.name in selected_plugins else ' ',
pos, ext.name))
selection = raw_input("Select a plugin (or hit enter to finish): ")
if not selection:
Expand Down

0 comments on commit c518420

Please sign in to comment.