Changeset 573 for trunk/Update Dates/update_dates.py
- Timestamp:
- 07/22/09 18:19:35 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Update Dates/update_dates.py
r566 r573 56 56 Paper = EagleFiler.documents['Paper.eflibrary'] 57 57 58 sources = os.path.exists(PREFERENCES_PATH) and \ 59 readPlist(PREFERENCES_PATH).get('Sources', []) or [] 58 if not Paper.exists(): 59 EagleFiler.open(os.path.expanduser('~/Documents/Paper/Paper.eflibrary')) 60 61 def read_sources(): 62 return readPlist(PREFERENCES_PATH).get('Sources', []) 63 64 if os.path.exists(PREFERENCES_PATH): 65 try: 66 sources = read_sources() 67 except: 68 from subprocess import call 69 call(['plutil', '-convert', 'xml1', PREFERENCES_PATH]) 70 sources = read_sources() 71 else: 72 sources = [] 60 73 61 74 def update_all():
Note:
See TracChangeset
for help on using the changeset viewer.