From: Eric Price Date: Wed, 30 Jan 2008 04:46:07 +0000 (-0500) Subject: Fix bug during create/delete clearing the cache X-Git-Tag: sipb-xen-www/1~17 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/c2fdf661b09c912a0ed297a7f1fbd20b829c3a95 Fix bug during create/delete clearing the cache svn path=/trunk/web/; revision=264 --- diff --git a/webcommon.py b/webcommon.py index 1b39a2c..4b58e6b 100644 --- a/webcommon.py +++ b/webcommon.py @@ -48,7 +48,7 @@ class Global(object): def clear(self): """Clear the state so future accesses reload it.""" - for attr in self.__dict__: + for attr in list(self.__dict__): if attr.startswith('__cache_'): delattr(self, attr)