Fix syntax error

This commit is contained in:
Katsuhiko YOSHIDA 2018-04-14 09:46:05 +09:00
parent e17e36f9e4
commit ce50042407

View File

@ -120,7 +120,7 @@ class TreasureData(BaseQueryRunner):
error = None
except errors.InternalError as e:
json_data = None
error = "%s: %s" % (e.message, cursor.show_job().get('debug', {}).get('stderr', 'No stderr message in the response')
error = "%s: %s" % (e.message, cursor.show_job().get('debug', {}).get('stderr', 'No stderr message in the response'))
return json_data, error
register(TreasureData)