Changeset 1790 for CodeSnippets/VideoTools/setup.py
- Timestamp:
- 11/06/08 17:20:27 (21 months ago)
- Files:
-
- 1 modified
-
CodeSnippets/VideoTools/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CodeSnippets/VideoTools/setup.py
r1789 r1790 5 5 """ 6 6 7 from shared.config import VideoToolsConfig 7 from shared.config import VideoToolsConfig, DEFAULT_CONFIG 8 8 9 9 if __name__ == "__main__": … … 11 11 cfg.debug() 12 12 13 cfg["videofiletypes"] = DEFAULT_CONFIG["videofiletypes"] 14 13 15 if cfg.out_dir_set == False: 14 16 # No new config file created, and out dir requested in the past 15 17 cfg.ask_out_dir() 16 18 17 cfg.debug()19 cfg.debug()