Skip to content

Commit

Permalink
Merge aa4fc38 into 8e633cc
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemansteve committed Nov 25, 2018
2 parents 8e633cc + aa4fc38 commit 5160b95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion adsmp/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ def __init__(self, app_name, *args, **kwargs):
def load_tweak_files(self):
"""load all tweak files from the tweak directory"""
if isdir(self.tweak_dir):
tweak_files = listdir(self.tweak_files).sort()
tweak_files = listdir(self.tweak_dir)
tweak_files.sort()
for t in tweak_files:
if t.endswith('.json'):
self.load_tweak_file(t)
Expand Down

0 comments on commit 5160b95

Please sign in to comment.