소스 검색

Forgot we can't iterate over cursor.execute()...

pull/24/head
Ben Kurtovic 12 년 전
부모
커밋
4003711724
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      pages/copyvios.mako

+ 2
- 1
pages/copyvios.mako 파일 보기

@@ -190,7 +190,8 @@

def synchronize_sites_with_db(cursor, updates, q_list, q_rmv, q_update):
removals = []
for site in cursor.execute(q_list):
cursor.execute(q_list)
for site in cursor:
updates.remove(site) if site in updates else removals.append(site)
cursor.executemany(q_rmv, removals)
cursor.executemany(q_update, updates)


불러오는 중...
취소
저장