|
@@ -245,7 +245,7 @@ def main(arguments):
|
|
try:
|
|
try:
|
|
run_main(parser, options, args)
|
|
run_main(parser, options, args)
|
|
except googleapiclient.errors.HttpError as error:
|
|
except googleapiclient.errors.HttpError as error:
|
|
- raise RequestError("Server response: {0}".format(error.content.strip()))
|
|
|
|
|
|
+ raise RequestError("Server response: {0}".format(bytes.decode(error.content).strip()))
|
|
|
|
|
|
def run():
|
|
def run():
|
|
sys.exit(lib.catch_exceptions(EXIT_CODES, main, sys.argv[1:]))
|
|
sys.exit(lib.catch_exceptions(EXIT_CODES, main, sys.argv[1:]))
|