From 69a533f78378acbbce6785ac90c169b103c0913c Mon Sep 17 00:00:00 2001 From: Robin Wittler Date: Thu, 4 Aug 2011 13:53:07 +0200 Subject: [PATCH] add errorhandling --- testgit_build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testgit_build.py b/testgit_build.py index 511ad73..99656ac 100755 --- a/testgit_build.py +++ b/testgit_build.py @@ -107,6 +107,7 @@ def remove_git_target_workspace(): try: shutil.rmtree(GIT_TARGET_WORKSPACE) except IOError, error: + logger.debug('IOError happend. errno is: %s' %(error.errno)) if error.errno == errno.ENOENT: logger.debug( '"%s" does not exists - and can be ignored' -- 2.39.5