https://bugs.documentfoundation.org/show_bug.cgi?id=173228
Werner Tietz <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Werner Tietz <[email protected]> --- (In reply to Rene Engelhard from comment #0) > I think the correct fix is: > > try: > webbrowser.open(url, new = 2) > -finally: > - return None > +return None ``` try: webbrowser.open(url, new = 2) -finally: +except: + raise ``` -- You are receiving this mail because: You are the assignee for the bug.
