remove unused variable

This commit is contained in:
Romain Bignon 2011-07-04 15:24:03 +02:00
commit 2a6ad71826

View file

@ -106,7 +106,7 @@ class ValueBackendPassword(Value):
try:
import keyring
keyring.set_password(self._domain, self.id, passwd)
except Exception, e:
except Exception:
self._value = passwd
else:
self._value = ''