From 79ae55b8753fc2718bf5b1caaddbd3075fce013b Mon Sep 17 00:00:00 2001 From: chriskiehl Date: Sat, 22 Nov 2014 21:24:48 -0500 Subject: [PATCH] fixed path error in __init__ --- gooey/__init__.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gooey/__init__.py b/gooey/__init__.py index 3a73ec1..c90b273 100644 --- a/gooey/__init__.py +++ b/gooey/__init__.py @@ -1,8 +1,5 @@ -try: - from gooey_decorator import Gooey - from gooey.python_bindings.gooey_parser import GooeyParser -except ImportError: - pass +from gooey.python_bindings.gooey_decorator import Gooey +from gooey.python_bindings.gooey_parser import GooeyParser __version__ = '0.1.0'