Skip to content

Commit

Permalink
Fixing the check for settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mostlyjason committed Apr 2, 2016
1 parent 0aba042 commit 0cb5aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caster/apps/atom.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class CommandRule(MappingRule):

# How long to wait for the Atom palette to load before hitting the enter key
atom_palette_wait = "30"
if settings.SETTINGS["apps"]["atom"]:
if settings.SETTINGS["miscellaneous"]["atom_palette_wait"]:
atom_palette_wait = settings.SETTINGS["miscellaneous"]["atom_palette_wait"]

mapping = {
Expand Down

0 comments on commit 0cb5aec

Please sign in to comment.