diff options
author | Georg Brandl <georg@python.org> | 2007-07-01 08:11:35 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-07-01 08:11:35 +0000 |
commit | ee250301b73993954f9d8bbb4e5e79297ac00713 (patch) | |
tree | 604f6d7b3879ca82e89f9a74df025bf0b5d51ebd /Lib/webbrowser.py | |
parent | 6eed49f919e5f2f6657a45f38a7ed227221d8c69 (diff) | |
download | cpython-git-ee250301b73993954f9d8bbb4e5e79297ac00713.tar.gz |
Fix a few webbrowser.py problems.
Diffstat (limited to 'Lib/webbrowser.py')
-rw-r--r-- | Lib/webbrowser.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index 209cb17b6a..6cf8942527 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -1,5 +1,6 @@ #! /usr/bin/env python """Interfaces for launching and remotely controlling Web browsers.""" +# Maintained by Georg Brandl. import os import shlex @@ -160,6 +161,7 @@ class GenericBrowser(BaseBrowser): def __init__(self, name): if isinstance(name, basestring): self.name = name + self.args = ["%s"] else: # name should be a list with arguments self.name = name[0] |