diff options
author | Tim Peters <tim.peters@gmail.com> | 2005-12-25 23:18:31 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2005-12-25 23:18:31 (GMT) |
commit | 536cf99536bce562cfcb44a856fac1c84b9de4c3 (patch) | |
tree | 80cf0f425cfc703b228aad716ed66cd4a5080c03 /Lib/webbrowser.py | |
parent | 83a8c393b06d24b3c6b252b7614c34110c369c43 (diff) | |
download | cpython-536cf99536bce562cfcb44a856fac1c84b9de4c3.zip cpython-536cf99536bce562cfcb44a856fac1c84b9de4c3.tar.gz cpython-536cf99536bce562cfcb44a856fac1c84b9de4c3.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/webbrowser.py')
-rw-r--r-- | Lib/webbrowser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index e21d182..b589d91 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -96,7 +96,7 @@ def _synthesize(browser, update_tryorder=1): if sys.platform[:3] == "win": def _isexecutable(cmd): cmd = cmd.lower() - if os.path.isfile(cmd) and (cmd.endswith(".exe") or + if os.path.isfile(cmd) and (cmd.endswith(".exe") or cmd.endswith(".bat")): return True for ext in ".exe", ".bat": @@ -134,7 +134,7 @@ class BaseBrowser(object): def __init__(self, name=""): self.name = name self.basename = name - + def open(self, url, new=0, autoraise=1): raise NotImplementedError |