cc-4105: removed old debug statements

This commit is contained in:
Rudi Grinberg 2012-08-10 11:44:09 -04:00
parent ab658a3800
commit 9015b93527
3 changed files with 0 additions and 3 deletions

View file

@ -138,7 +138,6 @@ def magic_move(old, new):
Moves path old to new and constructs the necessary to directories for new
along the way
"""
print("'%s' ==> '%s'" % (old, new))
new_dir = os.path.dirname(new)
if not os.path.exists(new_dir): os.makedirs(new_dir)
shutil.move(old,new)