Changeset 153
- Timestamp:
- 03/05/06 11:37:15 (3 years ago)
- Files:
-
- trunk/pyramid/build.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/pyramid/build.py
r149 r153 138 138 139 139 file(os.path.join(OUTPUTDIR,root,'index.html'),'w').write(html) 140 pickle.dump(ctx,open(cachepath,'w')) 140 if rebuilddirs is not None: 141 pickle.dump(ctx,open(cachepath,'w')) 141 142 else: 142 143 if ctx.verbose > 1: … … 152 153 if options.rebuilddirs: 153 154 rebuilddirs = options.rebuilddirs.strip().split(',') 154 if rebuilddirs == ['']:155 rebuilddirs == None156 155 else: 157 156 rebuilddirs = None
