diff options
| author | Graydon Hoare <[email protected]> | 2011-05-03 16:53:36 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-05-03 16:53:36 -0700 |
| commit | b81897d7e40f2a8b227230e9494c1a6031c846f4 (patch) | |
| tree | 3599a217f91f49e81c55939ac755364793cc5d38 /src/etc/snapshot.py | |
| parent | Attempt to use more portable python (diff) | |
| download | rust-b81897d7e40f2a8b227230e9494c1a6031c846f4.tar.xz rust-b81897d7e40f2a8b227230e9494c1a6031c846f4.zip | |
More python portability fixes (for windows).
Diffstat (limited to 'src/etc/snapshot.py')
| -rw-r--r-- | src/etc/snapshot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/snapshot.py b/src/etc/snapshot.py index 924568ee..8eaa3791 100644 --- a/src/etc/snapshot.py +++ b/src/etc/snapshot.py @@ -113,7 +113,7 @@ def make_snapshot(): tar = tarfile.open(file0, "w:bz2") for name in snapshot_files[kernel]: tar.add(os.path.join("stage2", name), - os.path.join("rust-stage0", name)) + "rust-stage0/" + name) tar.close() h = hash_file(file0) |