Cammy 7 년 전
부모
커밋
71a507efbb
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      pyinstalive/downloader.py

+ 2 - 0
pyinstalive/downloader.py

@@ -117,7 +117,9 @@ def get_replays(user_id):
 		else:
 			for index, broadcast in enumerate(broadcasts):
 				exists = False
+				print(save_path)
 				for directory in (os.walk(save_path).next()[1]):
+					print(directory)
 					if (str(broadcast['id']) in directory) and ("_live_" not in directory):
 						logger.log("[W] Already downloaded a replay with ID '" + str(broadcast['id']) + "', skipping...", "GREEN")
 					exists = True