comparison mxtool/mx.py @ 21872:fe0d57a9b79b

mx: Remove leftover debug statement
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Tue, 09 Jun 2015 11:53:26 +0200
parents 6db6070d30b9
children 518052de60d5
comparison
equal deleted inserted replaced
21871:2c21e9ec520b 21872:fe0d57a9b79b
649 os.makedirs(d) 649 os.makedirs(d)
650 650
651 if canSymlink and 'symlink' in dir(os): 651 if canSymlink and 'symlink' in dir(os):
652 if exists(path): 652 if exists(path):
653 os.unlink(path) 653 os.unlink(path)
654 print 'Path ' + cachePath + ' path: ' + path
655 os.symlink(cachePath, path) 654 os.symlink(cachePath, path)
656 else: 655 else:
657 shutil.copy(cachePath, path) 656 shutil.copy(cachePath, path)
658 657
659 def _sha1Cached(): 658 def _sha1Cached():