diff options
author | J. Goutin <JGoutin@users.noreply.github.com> | 2016-07-27 19:13:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-27 19:13:51 +0200 |
commit | d506d3d7411e890028092b72f1005d487a5398f1 (patch) | |
tree | b889d96ecd878063cb78292eea02446a80ec00aa | |
parent | 29016f7e696cdefba227ab761929698b4c636cb7 (diff) | |
download | external_python_setuptools-d506d3d7411e890028092b72f1005d487a5398f1.tar.gz external_python_setuptools-d506d3d7411e890028092b72f1005d487a5398f1.tar.bz2 external_python_setuptools-d506d3d7411e890028092b72f1005d487a5398f1.zip |
Fix regression in commit #e404a4a
Missing `,`
-rw-r--r-- | setuptools/msvc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/msvc.py b/setuptools/msvc.py index 2a665c92..c762c28f 100644 --- a/setuptools/msvc.py +++ b/setuptools/msvc.py @@ -909,7 +909,7 @@ class EnvironmentInfo: os.path.join(self.si.WindowsSdkDir, 'UnionMetadata'), os.path.join( ref, - 'Windows.Foundation.UniversalApiContract' + 'Windows.Foundation.UniversalApiContract', '1.0.0.0', ), os.path.join( @@ -919,7 +919,7 @@ class EnvironmentInfo: ), os.path.join( ref, - 'Windows.Networking.Connectivity.WwanContract' + 'Windows.Networking.Connectivity.WwanContract', '1.0.0.0', ), os.path.join( |