Browse Source

Merge pull request #76 from weskerfoot/fix-pathlib-bug

Fixes #75
pull/80/head
Wesley Kerfoot 5 years ago
committed by GitHub
parent
commit
fc96a2267f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      deletefb/tools/archive.py

2
deletefb/tools/archive.py

@ -38,7 +38,7 @@ class Archive:
def archiver(archive_type):
archive_file = open(
(Path(".") / Path(archive_type).name).with_suffix(".log"),
str((Path(".") / Path(archive_type).name).with_suffix(".log")),
mode="ta",
buffering=1
)

Loading…
Cancel
Save