Skip to content

Commit

Permalink
Decode subprocess output to handle Python 3 in readmegen (GoogleCloud…
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsg authored Feb 23, 2018
1 parent 1e80ba6 commit 02f5d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/readme-gen/readme_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@


def get_help(file):
return subprocess.check_output(['python', file, '--help'])
return subprocess.check_output(['python', file, '--help']).decode()


def main():
Expand Down

0 comments on commit 02f5d38

Please sign in to comment.