Skip to content

Commit

Permalink
Update delete_dataset_locks.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jggautier committed May 4, 2022
1 parent 2aa4513 commit d22728c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion other_scripts/delete_dataset_locks.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
with open(file, mode='r', encoding='utf-8') as f:
csvDictReader = DictReader(f, delimiter=',')
for row in csvDictReader:
datasetPIDs.append(row['persistent_id'].rstrip())
datasetPIDs.append(row['dataset_pid'].rstrip())

elif '.txt' in file:
file = open(file)
Expand Down

0 comments on commit d22728c

Please sign in to comment.