Skip to content

Commit

Permalink
[core/themes] Fix new theme code for Python 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
tobi-wan-kenobi committed Nov 26, 2017
1 parent 197c4c9 commit 63ef6b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bumblebee/theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def themes():
for filename in glob.iglob("{}/*.json".format(path)):
if "test" not in filename:
themes[os.path.basename(filename).replace(".json", "")] = 1
result = themes.keys()
result = list(themes.keys())
result.sort()
return result

Expand Down

0 comments on commit 63ef6b0

Please sign in to comment.