| Index: setup_links.py
|
| diff --git a/setup_links.py b/setup_links.py
|
| index 2825c28d9acf42b6be65ede2f3d269380a00f40c..a5b2ac95508dcc473127b294333010d839c85322 100755
|
| --- a/setup_links.py
|
| +++ b/setup_links.py
|
| @@ -192,7 +192,7 @@ class Rmtree(Action):
|
| def doit(self, _):
|
| if sys.platform.startswith('win'):
|
| # shutil.rmtree() doesn't work on Windows if any of the directories are
|
| - # read-only, which svn repositories are.
|
| + # read-only.
|
| subprocess.check_call(['rd', '/q', '/s', self._path], shell=True)
|
| else:
|
| shutil.rmtree(self._path)
|
|
|