diff problem.py @ 91:c62c9bfd614a

Removed import_error It was buggy anyway.
author Oleg Oshmyan <chortos@inbox.lv>
date Mon, 28 Feb 2011 16:05:20 +0000
parents 1fb319ec33af
children b7fb64ce03d9
line wrap: on
line diff
--- a/problem.py	Mon Feb 28 15:32:22 2011 +0000
+++ b/problem.py	Mon Feb 28 16:05:20 2011 +0000
@@ -2,14 +2,9 @@
 
 from __future__ import division, with_statement
 
-try:
-	from compat import *
-	import config, testcases
-except ImportError:
-	import __main__
-	__main__.import_error(sys.exc_info()[1])
-else:
-	from __main__ import options
+from compat import *
+import config, testcases
+from __main__ import options
 
 import os, re, sys