Explorar el Código

Fix recursion bug.

pull/24/head
Ben Kurtovic hace 9 años
padre
commit
a1d8b79265
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      copyvios/misc.py

+ 1
- 1
copyvios/misc.py Ver fichero

@@ -29,7 +29,7 @@ class Query(object):

class _AppCache(object):
def __init__(self):
self._data = {}
super(_AppCache, self).__setattr__("_data", {})

def __getattr__(self, key):
return self._data[key]


Cargando…
Cancelar
Guardar