Skip to content

Commit 0d4abd1

Browse files
committed
1. Revereted string formatting.
1 parent 081af75 commit 0d4abd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyessv/io_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def read(archive_dir=DIR_ARCHIVE, authority=None, scope=None):
7878
7979
"""
8080
if authority is not None:
81-
return _read_authority(f"{archive_dir}/{authority}", scope)
81+
return _read_authority("{}/{}".format(archive_dir, authority), scope)
8282
else:
8383
return [_read_authority(i) for i in glob.glob('{}/*'.format(archive_dir)) if isdir(i)]
8484

0 commit comments

Comments
 (0)