diff --git a/pyulib/src/ulib/web/pages.py b/pyulib/src/ulib/web/pages.py index ce12ceb..5ba7236 100644 --- a/pyulib/src/ulib/web/pages.py +++ b/pyulib/src/ulib/web/pages.py @@ -246,10 +246,10 @@ class Page(object): self.NAME = name self.METHOD = method m = None - if m is None and hasattr(self, 'index'): - m = getattr(self, 'index') if m is None and hasattr(self, self.__class__.__name__): m = getattr(self, self.__class__.__name__) + if m is None and hasattr(self, 'index'): + m = getattr(self, 'index') if m is None: m = self.error # XXX Ajouter un argument en fonction de la valeur du header Accept:, pour text/plain, # text/html, application/xml et application/xhtml+xml