Skip to content

Commit e363d92

Browse files
committed
Fix typeerror in jobviewer (fixes #324)
1 parent 6761e42 commit e363d92

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Fix exit value if the device is already handled
55
- Fix building with Python 3.12 (Issue #357, #355)
66
- Many translation updates
7+
- Fix TypeError in jobviewer.py (Issue #324)
78

89
1.5.18 changes
910
--------------

jobviewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1196,7 +1196,7 @@ def auth_info_dialog_response (self, dialog, response):
11961196
password_obj = PasswordStore(attrs,
11971197
name,
11981198
secret)
1199-
debugprint ("keyring: created id %d for %s" % (id, name))
1199+
debugprint ("keyring: password object created for {}".format(name))
12001200
except:
12011201
nonfatalException ()
12021202

0 commit comments

Comments
 (0)