Gtkvncviewer fails to start on keyring error
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
gtkvncviewer |
New
|
Undecided
|
Unassigned |
Bug Description
I recently changed my password (passwd), then got keyring trouble. Gtkvncviewer does not start anymore at all... So I modified the python script a bit. Here's a patch if you care to fix it:
/usr/share/
diff --git a/gtkvncviewer-
index dd8c16a..ba53edb 100755
--- a/gtkvncviewer-
+++ b/gtkvncviewer.py
@@ -113,7 +113,12 @@ class GtkVncViewer:
- keyring = gnomekeyring.
+ try:
+ keyring = gnomekeyring.
+ except:
+ username = None
+ password = None
+
@@ -132,6 +137,8 @@ class GtkVncViewer:
+ except:
+ print _("Keyring error")