2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2026-03-01 03:01:41 +00:00

better output format

This commit is contained in:
2025-10-22 23:49:27 +03:00
parent 43b3d712a7
commit 993005761c

View File

@@ -340,7 +340,7 @@ class Wallet(models.Model):
try: try:
for f in dirpath.iterdir(): for f in dirpath.iterdir():
if f.is_file(): if f.is_file():
files.append(Path(f.name)) files.append(str(Path(f.name)))
else: else:
files.append(f"-{Path(f.name)}-") files.append(f"-{Path(f.name)}-")
except FileNotFoundError: except FileNotFoundError: