diff --git a/raiden_contracts/deploy/etherscan_verify.py b/raiden_contracts/deploy/etherscan_verify.py index 31a6a14e5..62b949ca0 100644 --- a/raiden_contracts/deploy/etherscan_verify.py +++ b/raiden_contracts/deploy/etherscan_verify.py @@ -1,5 +1,6 @@ import json import click +import pprint import requests import subprocess from time import sleep @@ -157,7 +158,7 @@ def post_data_for_etherscan_verification( # Typo is intentional. Etherscan does not like the correct spelling. 'constructorArguements': constructor_args, } - print({k: v for k, v in data.items() if k is not 'sourceCode'}) + pprint.pprint({k: v for k, v in data.items() if k is not 'sourceCode'}) return data