Explorar el Código

Store update_time as an int, not a float.

tags/v0.1^2
Ben Kurtovic hace 12 años
padre
commit
e71e9daadb
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      earwigbot/wiki/copyvios/exclusions.py

+ 2
- 2
earwigbot/wiki/copyvios/exclusions.py Ver fichero

@@ -117,9 +117,9 @@ class ExclusionsDB(object):
conn.execute(query3, (sitename, url))
conn.executemany(query4, [(sitename, url) for url in urls])
if conn.execute(query5, (sitename,)).fetchone():
conn.execute(query6, (time(), sitename))
conn.execute(query6, (int(time()), sitename))
else:
conn.execute(query7, (sitename, time()))
conn.execute(query7, (sitename, int(time())))

def _get_last_update(self, sitename):
"""Return the UNIX timestamp of the last time the db was updated."""


Cargando…
Cancelar
Guardar