Skip to content

Commit

Permalink
Python 3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
gbastien committed May 27, 2024
1 parent 642f74e commit 582f2f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Changelog
2.28 (unreleased)
-----------------

- Nothing changed yet.

- Python 3 compatibility.
[gbastien]

2.27 (2024-05-27)
-----------------
Expand Down
2 changes: 1 addition & 1 deletion src/collective/eeafaceted/z3ctable/browser/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def render_table(self, batch):
self.update(batch)
try:
return self.render()
except Exception, exc:
except Exception as exc:
# in case an error occured, catch it or it freezes the web page
# because faceted JS disable page and error raised does not unlock
traceback.print_exc(None)
Expand Down

0 comments on commit 582f2f3

Please sign in to comment.