diff options
Diffstat (limited to 'tests/install_test.py')
-rw-r--r-- | tests/install_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/install_test.py b/tests/install_test.py index 52a46c00..56ab13cc 100644 --- a/tests/install_test.py +++ b/tests/install_test.py @@ -64,6 +64,7 @@ try: else: print '**** Test failed, please send me the output at tarek@ziade.org' finally: - os.remove(script_name) + if os.path.exists(script_name): + os.remove(script_name) os.remove('bootstrap.py') |