From 65298db17f62419c8339b5715c49f2241b4b540a Mon Sep 17 00:00:00 2001 From: Bart van Blokland Date: Wed, 21 May 2014 10:29:21 +0200 Subject: [PATCH] Kept in the print line for which path is added to PYTHONPATH --- Python-Powered-Pixels/src/core/Main.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Python-Powered-Pixels/src/core/Main.java b/Python-Powered-Pixels/src/core/Main.java index 439cb0c..44fa08e 100644 --- a/Python-Powered-Pixels/src/core/Main.java +++ b/Python-Powered-Pixels/src/core/Main.java @@ -112,6 +112,7 @@ private static void idle() { private static String getJARPath() { String path = Main.class.getProtectionDomain().getCodeSource().getLocation().getPath(); File jarFile = new File(path).getParentFile(); + System.out.println("Adding to python path: "+jarFile.getAbsolutePath()); return jarFile.getAbsolutePath(); } }