Skip to content

Commit

Permalink
fix: error when path with quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
cebarobot committed Oct 11, 2022
1 parent 1aaca55 commit 7511ba6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion JARL/cal_jarl.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def get_info_for_qsl_list(idx, one_qso, remarks):
if len(sys.argv) >= 2:
adif_file = sys.argv[1]
else:
adif_file = input("Your ADIF File: ")
adif_file = input("Your ADIF File: ").strip('\'\"')

qsos, header = adif_io.read_from_file(adif_file)

Expand Down
2 changes: 1 addition & 1 deletion WAPC/cal_wapc.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def init_cnt(list):
if len(sys.argv) >= 2:
adif_file = sys.argv[1]
else:
adif_file = input("Your ADIF File: ")
adif_file = input("Your ADIF File: ").strip('\'\"')

qsos, header = adif_io.read_from_file(adif_file)

Expand Down

0 comments on commit 7511ba6

Please sign in to comment.