Skip to content

Commit

Permalink
python.2: fix argv in step9
Browse files Browse the repository at this point in the history
  • Loading branch information
asarhaddon authored and kanaka committed Aug 3, 2024
1 parent 3431717 commit 4834c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impls/python.2/step9_try.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def rep_handling_exceptions(line: str, repl_env: Env) -> str:

if len(sys.argv) >= 2:
file_str = sys.argv[1]
print(rep_handling_exceptions('(load-file "' + file_str + '")', repl_env))
rep_handling_exceptions('(load-file "' + file_str + '")', repl_env)
exit(0)

while not eof:
Expand Down

0 comments on commit 4834c2c

Please sign in to comment.