Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mingsnu authored Apr 18, 2017
1 parent 0f0ebfa commit 5f85d06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xml2csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
def list_all_files(inputDir):
allFiles = []
for (dirname, dirnames, filenames) in os.walk(inputDir):
# Put all file names end up with ".hwp" in the input dictionary to a list
# Put all file names end up with ".xml" in the input dictionary to a list
allFiles = allFiles + [os.path.join(dirname,filename) for filename in filenames if filename.endswith(".xml")]
return(allFiles)

Expand Down

0 comments on commit 5f85d06

Please sign in to comment.