From kde-commits Fri Jul 31 22:49:14 2009 From: Ralf Habacker Date: Fri, 31 Jul 2009 22:49:14 +0000 To: kde-commits Subject: kdesupport/emerge/bin Message-Id: <1249080554.718725.1528.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=124908056406714 SVN commit 1005391 by habacker: added debug messages M +3 -1 utils.py --- trunk/kdesupport/emerge/bin/utils.py #1005390:1005391 @@ -1038,8 +1038,10 @@ def createDir(path): if not os.path.exists( path ): + debug("creating directory %s " % ( path ), 2) os.makedirs( path ) def copyFile(src,dest): """ copy file from src to dest""" - shutil.copy( src, dst ) + debug("copy file from %s to %s" % ( src, dest ), 2) + shutil.copy( src, dest )