Fix bug in exception

This commit is contained in:
Christian Cueni 2021-11-10 16:19:14 +01:00
parent 07792ec72d
commit 98dc5ffda7
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class MutateContentBlock(relay.ClientIDMutation):
raise errors
except Exception as e:
errors = ['Error: {}'.format(e)]
raise errors
raise Exception(errors)
class AddContentBlock(relay.ClientIDMutation):