Cannot delete stalled download from journal #1987

This commit is contained in:
Aleksey Lim 2010-05-05 07:17:53 +00:00
parent 845d2534e6
commit 883fefe782

View File

@ -68,10 +68,9 @@ class Bundle(object):
def __init__(self, path): def __init__(self, path):
self._path = path self._path = path
self._zip_root_dir = None self._zip_root_dir = None
if os.path.isdir(self._path):
self._zip_file = None self._zip_file = None
else:
if not os.path.isdir(self._path):
self._zip_file = zipfile.ZipFile(self._path) self._zip_file = zipfile.ZipFile(self._path)
self._check_zip_bundle() self._check_zip_bundle()