Math: Remove extra try block in favor of universalImport

Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
James Vega 2009-03-09 16:45:17 -04:00
parent 5076241bcd
commit ed32faabe1

View File

@ -1,6 +1,6 @@
###
# Copyright (c) 2002-2004, Jeremiah Fincher
# Copyright (c) 2008, James Vega
# Copyright (c) 2008-2009, James Vega
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@ -41,10 +41,6 @@ from supybot.commands import *
import supybot.callbacks as callbacks
convertcore = utils.python.universalImport('convertcore', 'our_convertcore')
try:
import convertcore
except ImportError:
import our_convertcore as convertcore
baseArg = ('int', 'base', lambda i: i <= 36)