diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2005-09-29 16:34:20 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2005-09-29 16:34:20 +0000 |
commit | 98c7c36f0324a43a55450d4a78e63a6363c8f9ca (patch) | |
tree | 885b80e01a77d76e249892ce323380e1550efe7e | |
parent | 0922db9882fdb849393d45a83e8a82ee9c037bb3 (diff) | |
download | portage-98c7c36f0324a43a55450d4a78e63a6363c8f9ca.tar.gz portage-98c7c36f0324a43a55450d4a78e63a6363c8f9ca.tar.bz2 portage-98c7c36f0324a43a55450d4a78e63a6363c8f9ca.zip |
Harmless typo in signal catcher.
svn path=/main/branches/2.0/; revision=2053
-rwxr-xr-x | bin/dispatch-conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dispatch-conf b/bin/dispatch-conf index 5007353fc..c1d8b700b 100755 --- a/bin/dispatch-conf +++ b/bin/dispatch-conf @@ -48,7 +48,7 @@ os.umask(oldmask) # Ensure the scratch dir is deleted def cleanup(mydir=SCRATCH_DIR): - shutil.rmtree(SCRATCH_DIR) + shutil.rmtree(mydir) atexit.register(cleanup) MANDATORY_OPTS = [ 'archive-dir', 'diff', 'replace-cvs', 'replace-wscomments', 'merge' ] |