From a1d8b79265ff660ea3f3611e11baeae07a5d7e3b Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Fri, 19 Sep 2014 17:38:08 -0500 Subject: [PATCH] Fix recursion bug. --- copyvios/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copyvios/misc.py b/copyvios/misc.py index 6cfb00a..b40f6f4 100644 --- a/copyvios/misc.py +++ b/copyvios/misc.py @@ -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]