Skip to content
This repository has been archived by the owner on Jan 29, 2019. It is now read-only.

Commit

Permalink
remove explicit default
Browse files Browse the repository at this point in the history
  • Loading branch information
TomConlin committed Jun 18, 2017
1 parent e2c487e commit 3e3b02e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/fcaption
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class MainWindow(QtGui.QMainWindow):

# main application
def expand_dir(path):
for root, dirs, files in os.walk(path, topdown=True):
for root, dirs, files in os.walk(path):
if files is not None:
files.sort()
for tmp in files:
Expand Down

0 comments on commit 3e3b02e

Please sign in to comment.