Skip to content

Commit 9a0f0c2

Browse files
committed
More windows debugging
1 parent e5e033e commit 9a0f0c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/json_store/shelve2json.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def convert(oldfile: str):
1313
if not os.path.isfile(oldfile):
1414
raise ValueError("No such file: {}".format(oldfile))
1515

16-
# name = oldfile.rsplit(".dat")[0] # Windows
16+
name = oldfile.rsplit(".dat")[0] # Windows
1717
name = oldfile.rsplit(".db")[0] # macOS
1818
print("Will open", name)
1919
data = shelve.open(name)

0 commit comments

Comments
 (0)