| Index: tools/remove_html_imports.py
|
| diff --git a/tools/remove_html_imports.py b/tools/remove_html_imports.py
|
| index 3296a36c2defcb0ecd37636f2f579e0819801ba2..49a87c46e1cd5b010903a389f39832d32b0fbc86 100644
|
| --- a/tools/remove_html_imports.py
|
| +++ b/tools/remove_html_imports.py
|
| @@ -24,7 +24,7 @@ def main(argv):
|
| source = argv[1]
|
| target = argv[2]
|
| shutil.rmtree(target)
|
| - shutil.copytree(source, target, ignore=ignore_patterns('.svn'))
|
| + shutil.copytree(source, target, ignore=shutil.ignore_patterns('.svn'))
|
|
|
| for root, subFolders, files in os.walk(target):
|
| for path in files:
|
|
|