Explorar el Código

Lol, infinite recursion errors.

pull/24/head
Ben Kurtovic hace 12 años
padre
commit
19d4e9b2d7
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      toolserver/misc.py

+ 4
- 1
toolserver/misc.py Ver fichero

@@ -19,7 +19,10 @@ class Query(object):
return None

def __setattr__(self, key, value):
self.query[key] = value
if key == "query":
super(Query, self).__setattr__(key, value)
else:
self.query[key] = value


def open_sql_connection(bot, dbname):


Cargando…
Cancelar
Guardar