Changeset 1559
- Timestamp:
- 11/13/06 19:46:11 (2 years ago)
- Files:
-
- accountmanagerplugin/0.10/acct_mgr/api.py (modified) (1 diff)
- accountmanagerplugin/trunk/acct_mgr/api.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
accountmanagerplugin/0.10/acct_mgr/api.py
r1558 r1559 109 109 110 110 def supports(self, operation): 111 return hasattr(self.password_store, operation) 111 try: 112 store = self.password_store 113 except AttributeError: 114 return False 115 else: 116 return hasattr(store, operation) 112 117 113 118 def password_store(self): accountmanagerplugin/trunk/acct_mgr/api.py
r1558 r1559 109 109 110 110 def supports(self, operation): 111 return hasattr(self.password_store, operation) 111 try: 112 store = self.password_store 113 except AttributeError: 114 return False 115 else: 116 return hasattr(store, operation) 112 117 113 118 def password_store(self):
