Skip to content

Commit

Permalink
FIX: undo a test configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
tcpan committed Oct 25, 2024
1 parent c6a8b0b commit a66b6ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chorus_upload/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ def _write_files(file_list: dict, upload_datetime: str, filename : str, **kwargs
fn = filename
print("list writing to ", fn)

# is_windows = os.name == 'nt'
is_windows = True
is_windows = os.name == 'nt'
# is_windows = True

eol = WINDOWS_STRINGS["eol"] if is_windows else LINUX_STRINGS["eol"]
comment = WINDOWS_STRINGS["comment"] if is_windows else LINUX_STRINGS["comment"]
Expand Down

0 comments on commit a66b6ea

Please sign in to comment.