Changeset 2302
- Timestamp:
- 02/17/10 12:46:54 (5 months ago)
- Files:
-
- 1 modified
-
trunk/papywizard/plugins/abstractPlugin.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/papywizard/plugins/abstractPlugin.py
r2279 r2302 84 84 self._defineConfig() 85 85 self._loadConfig() 86 87 def __cmp__(self, other): 88 """ Sort plugins on their name. 89 """ 90 if self.name < other.name: 91 return -1 92 elif self.name == other.name: 93 return 0 94 else: 95 return 1 86 96 87 97 # Properties
