Skip to content

Commit fbe2bc9

Browse files
author
georg.brandl
committedJul 1, 2007
Fix a few webbrowser.py problems.
git-svn-id: http://svn.python.org/projects/python/trunk@56137 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent c6b2fca commit fbe2bc9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎Lib/webbrowser.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#! /usr/bin/env python
22
"""Interfaces for launching and remotely controlling Web browsers."""
3+
# Maintained by Georg Brandl.
34

45
import os
56
import shlex
@@ -160,6 +161,7 @@ class GenericBrowser(BaseBrowser):
160161
def __init__(self, name):
161162
if isinstance(name, basestring):
162163
self.name = name
164+
self.args = ["%s"]
163165
else:
164166
# name should be a list with arguments
165167
self.name = name[0]

0 commit comments

Comments
 (0)
Please sign in to comment.