From dd21307e7a435c4d6de2152d422ffb2cf6583dd8 Mon Sep 17 00:00:00 2001 From: punkrockguy318 Date: Wed, 29 Apr 2009 04:41:00 +0000 Subject: [PATCH] attempt to load the in-tree gfceux scripts before loading the installed scripts (to ease development out of the tree) --- gfceux | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfceux b/gfceux index 54e8705a..8f73b985 100755 --- a/gfceux +++ b/gfceux @@ -6,9 +6,9 @@ # # try: - from gfceux import main -except: from src import main +except: + from gfceux import main app = main.GfceuxApp()