Skip to content

Commit

Permalink
Merge pull request #27 from minecraft2048/master
Browse files Browse the repository at this point in the history
Fix typo bug
  • Loading branch information
ajventer committed Jun 5, 2017
2 parents 80dd35d + 211c672 commit 6d638aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyKAN
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ if __name__ == '__main__':
if len(mod) > 1:
dispstr = 'Multiple mods match search term ' + mod_opt + ' , please select one'
answer = select_menu(dispstr, list(mod.keys()))
mods += [mods[list(mod.keys())[answer]]]
mods += [mod[list(mod.keys())[answer]]]
else:
try:
modid = list(mod.keys())[0]
Expand Down

0 comments on commit 6d638aa

Please sign in to comment.