ソースを参照

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)


読み込み中…
キャンセル
保存