Changeset 2829
- Timestamp:
- 10/14/09 19:15:27 (5 months ago)
- Files:
-
- branches/sabnzbd-0.4.x/sabnzbd/__init__.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/sabnzbd-0.4.x/sabnzbd/__init__.py
r2462 r2829 369 369 370 370 PAR_CLEANUP = bool(check_setting_int(CFG, 'misc', 'enable_par_cleanup', 1)) 371 371 372 372 PAR_MULTICORE = bool(check_setting_int(CFG, 'misc', 'enable_par_multicore', 1)) 373 373 … … 392 392 UMASK = check_setting_str(CFG, 'misc', 'permissions', '') 393 393 try: 394 if UMASK: 394 if UMASK and UMASK.lower() == 'none': 395 UMASK = '' 396 elif UMASK: 395 397 int(UMASK, 8) 396 398 except: