From 8b2a93bdf04d4b806f5da19c189f88cd3a8ef933 Mon Sep 17 00:00:00 2001 From: Headshotnoby Date: Tue, 22 Jun 2021 12:14:19 -0400 Subject: [PATCH] update.gz not update.tar.gz --- install_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_update.py b/install_update.py index 0795dbf..7b42210 100644 --- a/install_update.py +++ b/install_update.py @@ -20,7 +20,7 @@ def extractzip(progressbar): # Windows and Mac os.system("mv appbase AO2XP.app/Contents/Resources/base") # put it back in place def extractgz(progressbar): # Linux - archive = tarfile.open("update.tar.gz") + archive = tarfile.open("update.gz") archive.extractall()