zephyr_mirror: Fix missing api key file error message.
(imported from commit 3efe7fb8b2d593418c37dbab9389a8df9c27d003)
This commit is contained in:
parent
c945d60d16
commit
4b2d45e9a9
|
@ -605,9 +605,10 @@ if __name__ == "__main__":
|
|||
api_key = os.environ.get("HUMBUG_API_KEY")
|
||||
else:
|
||||
if not os.path.exists(options.api_key_file):
|
||||
print textwrap.wrap("Could not find API key file. " +
|
||||
"You need to either place your api key file at %s, " +
|
||||
"or specify the --api-key-file option." % (options.api_key_file))
|
||||
print "\n".join(textwrap.wrap("""\
|
||||
Could not find API key file.
|
||||
You need to either place your api key file at %s,
|
||||
or specify the --api-key-file option.""" % (options.api_key_file,)))
|
||||
sys.exit(1)
|
||||
api_key = file(options.api_key_file).read().strip()
|
||||
# Store the API key in the environment so that our children
|
||||
|
|
Loading…
Reference in a new issue