Explorar el Código

Fix SitesDB lookup for sites with overlapping URLs.

tags/v0.3
Ben Kurtovic hace 8 años
padre
commit
aed5a5954d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      earwigbot/wiki/sitesdb.py

+ 1
- 1
earwigbot/wiki/sitesdb.py Ver fichero

@@ -239,7 +239,7 @@ class SitesDB(object):
if site:
return site[0]
else:
url = "%{0}.{1}%".format(lang, project)
url = "//{0}.{1}.%".format(lang, project)
site = conn.execute(query2, (url,)).fetchone()
return site[0] if site else None
except sqlite.OperationalError:


Cargando…
Cancelar
Guardar