Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

get strings from omero.cmd.ERR and omero.CmdError correctly #534

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion omeroweb/webclient/webclient_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -1591,7 +1591,7 @@ def updatePermissions(self, group, permissions):
try:
cb = self.c.submit(command, loops=120)
except omero.CmdError as ex:
message = ex.err.message
message = str(ex.err)
finally:
if cb:
cb.close(True)
Expand Down
2 changes: 1 addition & 1 deletion omeroweb/webgateway/marshal.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ def graphResponseMarshal(conn, rsp):
rv = {}
if isinstance(rsp, omero.cmd.ERR):
rsp_params = ", ".join(["%s: %s" % (k, v) for k, v in rsp.parameters.items()])
rv["error"] = rsp.message
rv["error"] = str(rsp.category)
rv["report"] = "%s %s" % (rsp.name, rsp_params)
else:
included = rsp.responses[0].includedObjects
Expand Down
Loading