Skip to content

Commit

Permalink
Pretty print
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu committed Oct 22, 2018
1 parent 11c37ef commit c7f4f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/vyper
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Vyper programming language for Ethereum')
parser.add_argument('--version', action='version', version='{0}'.format(vyper.__version__))
parser.add_argument('input_file', help='Vyper sourcecode to compile')
parser.add_argument('-f', help='Format to print. Options: {}'.format(output_format.keys()), default='bytecode', dest='format')
parser.add_argument('-f', help='Format to print. Options: {}'.format(', '.join(output_format.keys())), default='bytecode', dest='format')
parser.add_argument('--show-gas-estimates', help='Show gas estimates in ir output mode.', action="store_true")

args = parser.parse_args()
Expand Down

0 comments on commit c7f4f9e

Please sign in to comment.