From: Rob Browning Date: Mon, 21 Mar 2011 00:41:45 +0000 (-0500) Subject: tmetadata.py: call helpers.unlink() rather than unlink(). X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=c4234669e7b4c5d54f318749297285b969e90089;p=packages%2Fb%2Fbup.git tmetadata.py: call helpers.unlink() rather than unlink(). Signed-off-by: Rob Browning --- diff --git a/lib/bup/t/tmetadata.py b/lib/bup/t/tmetadata.py index 786a97d..26ecbba 100644 --- a/lib/bup/t/tmetadata.py +++ b/lib/bup/t/tmetadata.py @@ -39,7 +39,7 @@ def setup_testfs(): def cleanup_testfs(): subprocess.call(['umount', 'testfs']) - unlink('testfs.img') + helpers.unlink('testfs.img') @wvtest