diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-08-13 14:37:23 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-08-13 14:37:23 (GMT) |
commit | 118aa5337c745dece455f4782799c83b9e3a7d4f (patch) | |
tree | 0197e6c9589cf4fb72f7f3a48b0ca97889ab39ce /Lib/webbrowser.py | |
parent | 49fa2bdaa124e99c62ea901c8151eaa064f79c6d (diff) | |
download | cpython-118aa5337c745dece455f4782799c83b9e3a7d4f.zip cpython-118aa5337c745dece455f4782799c83b9e3a7d4f.tar.gz cpython-118aa5337c745dece455f4782799c83b9e3a7d4f.tar.bz2 |
Fix malformed line (PyChecker)
Diffstat (limited to 'Lib/webbrowser.py')
-rw-r--r-- | Lib/webbrowser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index bdd6c31..dac40f6 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -74,7 +74,7 @@ def _synthesize(browser): controller.basename = os.path.basename(browser) register(browser, None, controller) return [None, controller] - ret + return [None, None] def _iscommand(cmd): |