Merge pull request #19986 from gnossen/internal_lint

Fix internal lint warnings.
pull/19989/head
Sheena Madan 5 years ago committed by GitHub
commit ba4fca6bc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/benchmark/gen_build_yaml.py
  2. 5
      src/boringssl/gen_build_yaml.py

@ -14,6 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import print_function
import os
import sys
import glob
@ -35,4 +36,4 @@ out['libs'] = [{
glob.glob('third_party/benchmark/include/benchmark/*.h')),
}]
print yaml.dump(out)
print(yaml.dump(out))

@ -13,6 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import print_function
import shutil
import sys
import os
@ -28,7 +29,7 @@ sys.path.append(os.path.join(boring_ssl_root, 'util'))
try:
import generate_build_files
except ImportError:
print yaml.dump({})
print(yaml.dump({}))
sys.exit()
def map_dir(filename):
@ -135,7 +136,7 @@ try:
g = Grpc()
generate_build_files.main([g])
print yaml.dump(g.yaml)
print(yaml.dump(g.yaml))
finally:
shutil.rmtree('src')

Loading…
Cancel
Save