Fix typo in script/dropbox_upload.py

This commit is contained in:
Soonho Kong 2013-09-15 20:15:03 -07:00
parent 2800292947
commit 7b7cafd499

View file

@ -43,7 +43,7 @@ def copy_file_with_retry(fullpath, targetpath, max_try):
try:
handle = open(fullpath)
except:
print("FAILED: " + targetpath + " not found")
print("FAILED: " + fullpath + " not found")
return
try: