aboutsummaryrefslogtreecommitdiffstats
path: root/python/upload_daily.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/upload_daily.py')
-rw-r--r--python/upload_daily.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/upload_daily.py b/python/upload_daily.py
index 57788a87..327d5f82 100644
--- a/python/upload_daily.py
+++ b/python/upload_daily.py
@@ -34,7 +34,7 @@ for i in range(10):
os.path.join(root, str(startdate), newfile_to_upload))
except OSError:
pass
- print "moved file from {0}".format(workdatestr)
+ print("moved file from {0}".format(workdatestr))
ftp = FTP('ftp.globeop.com')
ftp.login('srntsftp', config.ftp_password)
ftp.cwd('incoming')
@@ -42,4 +42,4 @@ for i in range(10):
ftp.storbinary('STOR ' + newfile_to_upload, fh)
break
-print "done"
+print("done")