diff options
author | Daniel Neus <[email protected]> | 2016-02-19 21:29:43 +0100 |
---|---|---|
committer | Daniel Neus <[email protected]> | 2016-02-19 21:29:43 +0100 |
commit | 929e15551ed3bc30112487dc313aaf89f820bf27 (patch) | |
tree | 47b655d9bbe9f3d3a327b144692d556766cfa76a /configure.py | |
parent | 90c90a93cae2f1d540ebb82f131b25fd956991e1 (diff) |
fix comment
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 818a35ec8..88c2b1832 100755 --- a/configure.py +++ b/configure.py @@ -1565,7 +1565,7 @@ def choose_link_method(options): def useable_methods(): # Symbolic link support on Windows was introduced in Windows 6.0 (Vista) and Python 3.2 # Furthermore the SeCreateSymbolicLinkPrivilege is required in order to successfully create symlinks - # So only use try to use symlinks on Windows if explicitly requested + # So only try to use symlinks on Windows if explicitly requested if req == 'symlink' and options.os == 'windows': yield 'symlink' # otherwise keep old conservative behavior |