Show
Ignore:
Timestamp:
11/18/07 15:12:57 (2 years ago)
Author:
glslang
Message:

+ bug fixes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jahplayer/utilities.py

    r911 r922  
    6060        if not os.access( path, os.F_OK ): 
    6161                os.mkdir( path, 0777 ) 
     62                 
     63        reel_path = os.path.join( path, filename ).replace( '\\', '/' ) 
     64        if not os.access( reel_path, os.F_OK ): 
     65          f = open( reel_path, 'w' ) 
     66          f.close( ) 
    6267 
    63         return os.path.join( path, filename ).replace( '\\', '/' ) 
     68        return reel_path 
    6469 
    6570def get_files( path, pattern = None, regexp = None, crawl = True ):