Sfoglia il codice sorgente

Fix recursion bug.

pull/24/head
Ben Kurtovic 9 anni fa
parent
commit
a1d8b79265
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      copyvios/misc.py

+ 1
- 1
copyvios/misc.py Vedi File

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


Caricamento…
Annulla
Salva