Slightly safer handling of Err in Python clients

This commit is contained in:
Ammar Aijazi 2015-06-09 14:17:12 -07:00
Родитель de5863a4fc
Коммит 4da15d6ae2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -175,7 +175,7 @@ class TabletConnection(object):
reply = response.reply
# Handle the case of new client => old server
if reply.get('Err', None):
raise gorpc.AppError(reply['Err']['Message'], method_name)
raise gorpc.AppError(reply['Err'].get('Message', 'Missing error message'), method_name)
return response
def _execute(self, sql, bind_variables):