Changeset 1844
- Timestamp:
- 01/03/07 10:38:16 (2 years ago)
- Files:
-
- accountmanagerplugin/0.10/acct_mgr/htfile.py (modified) (1 diff)
- accountmanagerplugin/0.9/acct_mgr/htfile.py (modified) (1 diff)
- accountmanagerplugin/trunk/acct_mgr/htfile.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
accountmanagerplugin/0.10/acct_mgr/htfile.py
r1581 r1844 176 176 'are supported in the htpasswd file.') 177 177 else: 178 return suffix == crypt(password, suffix [:2])178 return suffix == crypt(password, suffix) 179 179 180 180 def _get_users(self, filename): accountmanagerplugin/0.9/acct_mgr/htfile.py
r1518 r1844 166 166 'are supported in the htpasswd file.') 167 167 else: 168 return suffix == crypt(password, suffix [:2])168 return suffix == crypt(password, suffix) 169 169 170 170 def _get_users(self, filename): accountmanagerplugin/trunk/acct_mgr/htfile.py
r1581 r1844 176 176 'are supported in the htpasswd file.') 177 177 else: 178 return suffix == crypt(password, suffix [:2])178 return suffix == crypt(password, suffix) 179 179 180 180 def _get_users(self, filename):
