diff --git a/src/utils.py b/src/utils.py index cf3f936dc..68971a784 100755 --- a/src/utils.py +++ b/src/utils.py @@ -476,7 +476,6 @@ def safeEval(s, namespace={'True': True, 'False': False, 'None': None}): else: raise ValueError, 'Unsafe string.' - def exnToString(e): """Turns a simple exception instance into a string (better than str(e))""" return '%s: %s' % (e.__class__.__name__, e)