# HG changeset patch # User Adrien Di Mascio # Date 1307434656 -7200 # Node ID c202aaf71489597eb095592039fbf5ee25982369 # Parent 5a6b3e51807dc79f72d845a6904fda520b03eb17 [server] fix NameError (missing VIRTUAL_RTYPES import) in checkintegrity.py diff -r 5a6b3e51807d -r c202aaf71489 server/checkintegrity.py --- a/server/checkintegrity.py Tue Jun 07 10:07:58 2011 +0200 +++ b/server/checkintegrity.py Tue Jun 07 10:17:36 2011 +0200 @@ -1,4 +1,4 @@ -# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. +# copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved. # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr # # This file is part of CubicWeb. @@ -30,7 +30,7 @@ from logilab.common.shellutils import ProgressBar -from cubicweb.schema import PURE_VIRTUAL_RTYPES +from cubicweb.schema import PURE_VIRTUAL_RTYPES, VIRTUAL_RTYPES from cubicweb.server.sqlutils import SQL_PREFIX from cubicweb.server.session import security_enabled