소스 검색

Remove debug printing of local files

DricomDragon 4 년 전
부모
커밋
e6ce06a4fc
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  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 ...")