Changeset 1807 for CodeSnippets/VideoTools/shared/tk_tools.py
- Timestamp:
- 11/19/08 17:32:54 (16 months ago)
- Location:
- CodeSnippets/VideoTools
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
shared/tk_tools.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CodeSnippets/VideoTools
-
Property
svn:ignore set
to
config.dat
-
Property
svn:ignore set
to
-
CodeSnippets/VideoTools/shared/tk_tools.py
r1798 r1807 17 17 sys.exit() 18 18 19 return os.path.normpath(path) 19 if isinstance(path, tuple): 20 return [os.path.normpath(i) for i in path] 21 else: 22 return os.path.normpath(path) 20 23 21 24 def askdirectory2(*args, **kwargs):