You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ partedit
QSettings::value: Empty key passed
QSettings::value: Empty key passed
Please supply a name for the new attribute
Traceback (most recent call last):
File "/usr/local/bin/partedit", line 1083, in dataDirtiedSlot
title += '*'
TypeError: unsupported operand type(s) for +=: 'NoneType' and 'str'
Abort trap
--- src/tools/partedit.py.orig 2024-06-01 19:33:22 UTC
+++ src/tools/partedit.py
@@ -1080,7 +1080,7 @@ class PartEdit(QMainWindow):
def dataDirtiedSlot(self, dirty):
""" Sets the window title with or without "*" for dirty state """
- title = self.data.filename
+ title = str(self.data.filename)
if dirty:
title += '*'
self.setWindowTitle(title)
The text was updated successfully, but these errors were encountered:
partio/src/tools/partedit.py
Line 1083 in 8d9832e
Patch:
The text was updated successfully, but these errors were encountered: