From: Georg Brandl Date: Sun, 1 Jul 2007 08:11:35 +0000 (+0000) Subject: Fix a few webbrowser.py problems. X-Git-Tag: v2.6a1~1591 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ee250301b73993954f9d8bbb4e5e79297ac00713;p=thirdparty%2FPython%2Fcpython.git Fix a few webbrowser.py problems. --- diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index 209cb17b6ad0..6cf894252741 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]