summaryrefslogtreecommitdiff
path: root/buildscripts/make_vcxproj.py
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2019-04-16 14:33:43 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2019-04-16 14:33:43 -0400
commit286c0312647aae2261885da3c350f2cf24ea717d (patch)
treed2c026d07af31d046f276dac29cc9f468a6fa4b9 /buildscripts/make_vcxproj.py
parentf87a44a7433199caf1f8e7b7b16238ed87f3f60a (diff)
downloadmongo-286c0312647aae2261885da3c350f2cf24ea717d.tar.gz
SERVER-40559 Python linters do not run after upgrade to Python 3
Diffstat (limited to 'buildscripts/make_vcxproj.py')
-rw-r--r--buildscripts/make_vcxproj.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/buildscripts/make_vcxproj.py b/buildscripts/make_vcxproj.py
index 6af1007bea5..2f1c9b85f04 100644
--- a/buildscripts/make_vcxproj.py
+++ b/buildscripts/make_vcxproj.py
@@ -17,7 +17,6 @@ import io
import json
import os
import re
-import io
import sys
import uuid
import xml.etree.ElementTree as ET
@@ -150,7 +149,10 @@ class ProjFileGenerator(object): # pylint: disable=too-many-instance-attributes
return self
def __exit__(self, exc_type, exc_value, traceback):
- self.vcxproj = open(self.vcxproj_file_name, "w", )
+ self.vcxproj = open(
+ self.vcxproj_file_name,
+ "w",
+ )
with open('buildscripts/vcxproj.header', 'r') as header_file:
header_str = header_file.read()