Changeset 1106

Show
Ignore:
Timestamp:
04/09/08 11:04:47
Author:
mylan
Message:

Prevent copying '.svn' directories to skin product from template.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • qPloneSkinDump/branches/plone_3.0/utils.py

    r1096 r1106  
    341341            f_dst.write(data) 
    342342            f_dst.close() 
    343         elif os.path.isdir(src_path): 
     343        elif os.path.isdir(src_path) \ 
     344             and not ".svn" in src_path: 
    344345            if not os.path.exists(dst_path): 
    345346                os.mkdir(dst_path)