mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 01:55:12 +00:00
Normalized file path in console output.
This commit is contained in:
parent
29d5cce634
commit
74641bb584
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ import humanize
|
||||||
|
|
||||||
|
|
||||||
def get_file_list(directory):
|
def get_file_list(directory):
|
||||||
return glob.glob(directory + '/*')
|
return map(os.path.normpath, glob.glob(directory + '/*'))
|
||||||
|
|
||||||
|
|
||||||
def read_file_to_json_string(filename):
|
def read_file_to_json_string(filename):
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue