Show
Ignore:
Timestamp:
11/19/08 17:32:54 (16 months ago)
Author:
JensDiemer
Message:

VideoTools? updates.

Location:
CodeSnippets/VideoTools
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • CodeSnippets/VideoTools

    • Property svn:ignore set to
      config.dat
  • CodeSnippets/VideoTools/shared/tk_tools.py

    r1798 r1807  
    1717        sys.exit() 
    1818     
    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) 
    2023 
    2124def askdirectory2(*args, **kwargs):