Commit 32eb864d authored by Ronald Oussoren's avatar Ronald Oussoren

Remove conditional import of 'ic', that module

was removed in the transition from python 2.x to
python 3.x.
parent 08ec84cf
......@@ -540,18 +540,6 @@ if sys.platform[:3] == "win":
# Platform support for MacOS
#
try:
import ic
except ImportError:
pass
else:
class InternetConfig(BaseBrowser):
def open(self, url, new=0, autoraise=True):
ic.launchurl(url)
return True # Any way to get status?
register("internet-config", InternetConfig, update_tryorder=-1)
if sys.platform == 'darwin':
# Adapted from patch submitted to SourceForge by Steven J. Burr
class MacOSX(BaseBrowser):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment