buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_buildtools.py
changeset 628 7c4a911dc066
parent 587 85df38eb4012
--- a/buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_buildtools.py	Wed Jun 16 16:51:40 2010 +0300
+++ b/buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_buildtools.py	Fri Aug 13 14:59:05 2010 +0300
@@ -30,7 +30,8 @@
     def setUp(self):
         """called before all tests run to setup variables etc."""
         self.temp = "temp"
-        os.makedirs(self.temp)
+        if not os.path.exists(self.temp):
+            os.makedirs(self.temp)
     
     def tearDown(self):
         """ called after tests have run to clear anything left hanging around"""