Skip to content

Commit

Permalink
Merge pull request #1 from cardek/cardek-patch-1
Browse files Browse the repository at this point in the history
Update closurebuilder.py
  • Loading branch information
cardek authored Mar 16, 2021
2 parents 80b5313 + 470928e commit 8d5b3c6
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions closure/bin/build/closurebuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,7 @@ def main():
if options.output_file:
out = io.open(options.output_file, 'wb')
else:
version = sys.version_info[:2]
if version >= (3, 0):
# Write bytes to stdout
out = sys.stdout.buffer
else:
out = sys.stdout
out = sys.stdout

sources = set()

Expand Down

0 comments on commit 8d5b3c6

Please sign in to comment.