From 4ace08867cb083f3cf1cd5d6735da4a6e5a7db5e Mon Sep 17 00:00:00 2001 From: Konloch Date: Wed, 14 Jul 2021 07:41:23 -0700 Subject: [PATCH] Fixed Python Paths --- .../club/bytecodeviewer/resources/ExternalResources.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/resources/ExternalResources.java b/src/main/java/the/bytecode/club/bytecodeviewer/resources/ExternalResources.java index 29526371..fdec5f19 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/resources/ExternalResources.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/resources/ExternalResources.java @@ -231,6 +231,7 @@ public class ExternalResources return; Configuration.python2 = file.getAbsolutePath(); + Configuration.python2Extra = ""; SettingsSerializer.saveSettingsAsync(); } @@ -244,6 +245,7 @@ public class ExternalResources return; Configuration.python3 = file.getAbsolutePath(); + Configuration.python3Extra = ""; SettingsSerializer.saveSettingsAsync(); }