Ticket #3377: stefano.lenzi.patch
| File stefano.lenzi.patch, 0.7 KB (added by kismet.sl@…, 3 years ago) |
|---|
-
trac/scripts/admin.py
12 12 # history and logs, available at http://projects.edgewall.com/trac/. 13 13 # 14 14 15 __copyright__ = 'Copyright (c) 2003-2006 Edgewall Software'16 17 15 import cmd 18 16 import getpass 19 17 import os … … 38 36 from trac.wiki import WikiPage 39 37 from trac.wiki.macros import WikiMacroBase 40 38 39 __copyright__ = 'Copyright (c) 2003-2006 Edgewall Software' 40 41 41 def copytree(src, dst, symlinks=False, skip=[]): 42 42 """Recursively copy a directory tree using copy2() (from shutil.copytree.) 43 43
