Browse Source

Remove debug printing of local files

DricomDragon 4 years ago
parent
commit
e6ce06a4fc
1 changed files with 0 additions and 2 deletions
  1. 0 2
      boto-updater.py

+ 0 - 2
boto-updater.py

@@ -15,8 +15,6 @@ s3 = boto3.client('s3', use_ssl=False, endpoint_url="http://172.17.0.2:9000", aw
 # Source : https://stackoverflow.com/questions/3207219/how-do-i-list-all-files-of-a-directory
 local_file_list = os.listdir(folder_to_sync)
 bucket_file_list = [obj['Key'] for obj in s3.list_objects(Bucket=bucket_target)['Contents']]
-print("Local : ", folder_to_sync)
-print(local_file_list)
 
 # Upload
 print("Uploading new files ...")