remove unnecessary print

This commit is contained in:
Dhilan007 2013-11-12 17:53:23 +08:00
parent e182328d51
commit d43bc3f75d
1 changed files with 0 additions and 1 deletions

View File

@ -109,7 +109,6 @@ def copy_files(src, dst):
if os.path.isdir(path):
new_dst = os.path.join(dst, item)
os.mkdir(new_dst)
print new_dst
copy_files(path, new_dst)
def copy_resources(target, app_android_root):