Skip to content

Commit

Permalink
changed ID database name to nxdn.csv
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob committed Jan 5, 2021
1 parent e3701e3 commit 86e6dd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nxcm_log_icom/nxcm_icom_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def writeout():
t.start()

uid_dict = {}
with open('uid.csv') as csvfile:
with open('nxdn.csv') as csvfile:
uidreader = csv.reader(csvfile, delimiter=',', quotechar='|')
for row in uidreader:
if len(row) < 1:
Expand Down
2 changes: 1 addition & 1 deletion nxcm_log_kenwood/nxcm_kenwood_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def writeout():
t.start()

uid_dict = {}
with open('uid.csv') as csvfile:
with open('nxdn.csv') as csvfile:
uidreader = csv.reader(csvfile, delimiter=',', quotechar='|')
for row in uidreader:
if len(row) < 1:
Expand Down

0 comments on commit 86e6dd1

Please sign in to comment.