diff -r 75d242975792 -r 1158231e7360 web/webconfig.py --- a/web/webconfig.py Fri Jan 23 19:18:28 2009 +0100 +++ b/web/webconfig.py Fri Jan 23 19:21:29 2009 +0100 @@ -1,7 +1,7 @@ """common web configuration for twisted/modpython applications :organization: Logilab -:copyright: 2001-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved. +:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved. :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr """ __docformat__ = "restructuredtext en" @@ -349,6 +349,6 @@ stream.close() def static_file_del(self, rpath): - if static_file_exists(rpath): + if self.static_file_exists(rpath): os.remove(join(self.static_directory, rpath))