Skip to content

Commit

Permalink
Fix on DynaTable to show error message in pyjd
Browse files Browse the repository at this point in the history
  • Loading branch information
keesbos committed Apr 15, 2011
1 parent 8a0213a commit 4ca2e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/dynamictable/DynaTableWidget.py
Expand Up @@ -96,7 +96,7 @@ def accept(self, startRow, data):
def failed(self, message):
msg = "Failed to access data"
if message:
msg += ": " + message
msg = "%s: %s" % (msg, message)
RootPanel().add(HTML(msg))


Expand Down

0 comments on commit 4ca2e31

Please sign in to comment.