summaryrefslogtreecommitdiff
path: root/Lib/webbrowser.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-08-13 14:37:23 +0000
committerAndrew M. Kuchling <amk@amk.ca>2001-08-13 14:37:23 +0000
commit118aa5337c745dece455f4782799c83b9e3a7d4f (patch)
tree0197e6c9589cf4fb72f7f3a48b0ca97889ab39ce /Lib/webbrowser.py
parent49fa2bdaa124e99c62ea901c8151eaa064f79c6d (diff)
downloadcpython-git-118aa5337c745dece455f4782799c83b9e3a7d4f.tar.gz
Fix malformed line (PyChecker)
Diffstat (limited to 'Lib/webbrowser.py')
-rw-r--r--Lib/webbrowser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py
index bdd6c31196..dac40f62c2 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):