This commit is contained in:
2026-05-09 10:21:56 -04:00
parent 481e67205d
commit 61657fb3f2

2
qt.py
View File

@@ -1767,7 +1767,7 @@ class WillSettingsWidget(QWidget):
target = os.path.abspath(filename)
# se il file esiste, sovrascrive
_logger.debug(f"save_to_cwd {self.temp_path},{filename}")
with open(path, "rb") as src, open(target, "wb") as dst:
with open(self.temp_path, "rb") as src, open(target, "wb") as dst:
dst.write(src.read())
return target