From bf24e5f51829d90f280cee241970306207abbf32 Mon Sep 17 00:00:00 2001 From: blitzman Date: Sat, 25 Feb 2017 18:47:03 -0500 Subject: [PATCH 1/2] Fix for #1014 --- gui/bitmapLoader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/bitmapLoader.py b/gui/bitmapLoader.py index 9a6639481..83fc46961 100644 --- a/gui/bitmapLoader.py +++ b/gui/bitmapLoader.py @@ -34,7 +34,7 @@ except ImportError: class BitmapLoader(object): try: - archive = zipfile.ZipFile(os.path.join(config.pyfaPath, 'imgs.zip', 'r')) + archive = zipfile.ZipFile(os.path.join(config.pyfaPath, 'imgs.zip'), 'r') except IOError: archive = None From 1ae5f6469623cdde410522174de21bf72fbd4ebb Mon Sep 17 00:00:00 2001 From: blitzman Date: Sat, 25 Feb 2017 18:50:20 -0500 Subject: [PATCH 2/2] Here we go again! --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index d49b6d37e..a33688018 100644 --- a/config.py +++ b/config.py @@ -19,7 +19,7 @@ saveInRoot = False # Version data version = "1.27.2" -tag = "git" +tag = "Stable" expansionName = "YC119.2" expansionVersion = "1.4" evemonMinVersion = "4081"