Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TurtleArtActivity.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/TurtleArtActivity.py b/TurtleArtActivity.py
index 943eb4a..2271c57 100644
--- a/TurtleArtActivity.py
+++ b/TurtleArtActivity.py
@@ -844,11 +844,19 @@ class TurtleArtActivity(activity.Activity):
if hasattr(self, 'tw'):
_logger.debug('Read file: %s' % (file_path))
# Could be a plugin or deprecated gtar or tar file...
- if plugin or file_path.endswith(('.gtar', '.tar')):
+ if plugin or file_path.endswith(('.gtar', '.tar', '.tar.gz')):
import tempfile
import shutil
- tar_fd = tarfile.open(file_path, 'r')
+ try:
+ status = subprocess.call(['gunzip', file_path])
+ if status == 0:
+ tar_fd = tarfile.open(file_path[:-3], 'r')
+ else:
+ tar_fd = tarfile.open(file_path, 'r')
+ except:
+ tar_fd = tarfile.open(file_path, 'r')
+
tmpdir = tempfile.mkdtemp()
if True: #try: