Ver código fonte

Fix recursion bug.

pull/24/head
Ben Kurtovic 9 anos atrás
pai
commit
a1d8b79265
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      copyvios/misc.py

+ 1
- 1
copyvios/misc.py Ver arquivo

@@ -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]


Carregando…
Cancelar
Salvar