Changeset 128 for trunk/factory/src/backends/__init__.py
- Timestamp:
- 04/21/09 16:59:35 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/factory/src/backends/__init__.py
r79 r128 51 51 52 52 self.application = config.get(section, 'application') 53 self.major = config.get(section, 'major') 54 self.minor = config.get(section, 'minor') 53 self.version = config.get(section, 'version') 55 54 self.doctype = config.get(section, 'doctype') 56 55 self.formats = [s.strip() for s in config.get(section, 'formats').split(',')] … … 68 67 eligable = ( 69 68 job['application'] == self.application and 70 job['major'] == self.major and 71 job['minor'] == self.minor and 69 job['version'] == self.version and 72 70 job['doctype'] == self.doctype and 73 71 (job['format'] == '' or job['format'] in self.formats)
Note: See TracChangeset
for help on using the changeset viewer.