Skip to content

Commit

Permalink
python3 code raises a different type of exception..
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@21897 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Feb 27, 2019
1 parent 73f15d8 commit 70b667a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/clipboard/clipboard_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ def nodata():
if not self._have_token:
try:
return gtk.Invisible.do_selection_get(self, selection_data, info, time)
except NotImplementedError as e:
except Exception as e:
log("gtk.Invisible.do_selection_get", exc_info=True)
if first_time("selection-%s-not-implemented" % self._selection):
log.warn("Warning: limited clipboard support for %s", self._selection)
Expand Down

0 comments on commit 70b667a

Please sign in to comment.