Commit 80afc7a8 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Reverted changes in 738143a8 since we use Python 3.9.1 now.

parent cdf8e681
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ class FileGrouper(object):
                cwd = os.getcwd()
                parent = os.path.dirname(folder)
                os.chdir(parent)
                sp = subprocess.run(["tar", "-cf", os.path.basename(folder) + ".tar", os.path.basename(folder)], stdout = subprocess.PIPE, stderr = subprocess.PIPE)
                sp = subprocess.run(["tar", "-cf", os.path.basename(folder) + ".tar", os.path.basename(folder)], capture_output = True)
                if(sp.returncode or sp.stderr):
                    sys.exit(f"Error: cannot create a .tar for {folder}")
                else: