Skip to content

Commit

Permalink
fix f string
Browse files Browse the repository at this point in the history
  • Loading branch information
MridulS committed Sep 21, 2020
1 parent 4f306e7 commit fa8f728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbreproduce/nbreproduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def _check_windows_EOL(script):
import platform
# Convert the bash script EOL to UNIX compatible
if platform.system() == 'Windows':
print('Windows machine detected, converting the {script} EOL to UNIX style.')
print(f'Windows machine detected, converting the {script} EOL to UNIX style.')
WINDOWS_LINE_ENDING = b'\r\n'
UNIX_LINE_ENDING = b'\n'
with open(script, 'rb') as open_file:
Expand Down

0 comments on commit fa8f728

Please sign in to comment.