diff options
| author | Lennart Poettering <lennart@poettering.net> | 2005-11-26 20:07:26 +0000 | 
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2005-11-26 20:07:26 +0000 | 
| commit | fa214d488ac8605592b4003452606ec08b092ba3 (patch) | |
| tree | 0e8504170a8241619da33e5d96277429d1138160 | |
| parent | cbb0062766d5176c33b7a36942ff560bb9ccc7d3 (diff) | |
fix os.unlink
git-svn-id: file:///home/lennart/svn/public/sse/trunk@76 5fbabb74-0606-0410-a5e4-b5cc6a42724e
| -rwxr-xr-x | feed/sse_tar.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/feed/sse_tar.py b/feed/sse_tar.py index 653ee3e..62a48d1 100755 --- a/feed/sse_tar.py +++ b/feed/sse_tar.py @@ -75,7 +75,7 @@ def uncompress_tar(archive, root, package_id, meta = {}, tmp = None, descend = T                      try:                          n += uncompress_tar(archive, root, package_id, meta, tmp_archive, False, i.name)                      finally: -                        unlink(tmp_archive) +                        os.unlink(tmp_archive)                      print "Subarchive ended, continuing with top level archive..."                      continue  | 
