Changeset 5475
- Timestamp:
- 10/06/09 17:28:17 (7 weeks ago)
- Files:
-
- 1 modified
-
trunk/bcfg2/src/lib/Server/Plugins/Cfg.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bcfg2/src/lib/Server/Plugins/Cfg.py
r5119 r5475 55 55 class CfgEntrySet(Bcfg2.Server.Plugin.EntrySet): 56 56 def __init__(self, basename, path, entry_type, encoding): 57 Bcfg2.Server.Plugin.EntrySet.__init__(self, basename, path, entry_type,58 en coding)57 Bcfg2.Server.Plugin.EntrySet.__init__(self, basename, path, 58 entry_type, encoding) 59 59 self.specific = CfgMatcher(path.split('/')[-1]) 60 60 … … 80 80 basefile = used.pop(0) 81 81 data = basefile.data 82 if entry.tag == 'Path': 83 entry.set('type', 'configfile') 82 84 for delta in used: 83 85 data = data.strip()