Changeset 495 in tailor
- Timestamp:
- 08/05/05 03:01:35 (8 years ago)
- Hash name:
- 20050805010135-97f81-c19d935afa46ab732a12f8cbfa01b8e3cb7ae961
- Location:
- vcpx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
vcpx/tailor.py
r494 r495 277 277 for k,v in options.__dict__.items(): 278 278 if k not in ['interactive', 'bootstrap', 'configfile']: 279 defaults[k.replace('_', '-')] = v279 defaults[k.replace('_', '-')] = str(v) 280 280 281 281 if options.configfile: -
vcpx/config.py
r491 r495 65 65 if value == 'None': 66 66 return default 67 elif value == 'True': 68 return True 69 elif value == 'False': 70 return False 67 71 else: 68 72 return value
Note: See TracChangeset
for help on using the changeset viewer.
