From 1dcab0744df6e615a6456e63dda7f8c7b90b1eca Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Fri, 25 Mar 2022 11:17:05 +0100 Subject: [PATCH] [IMP] runbot_merge: remove dead code apparently at one point I wanted to provide an atom feed or something --- runbot_merge/controllers/dashboard.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/runbot_merge/controllers/dashboard.py b/runbot_merge/controllers/dashboard.py index 4686d815..dfaf0670 100644 --- a/runbot_merge/controllers/dashboard.py +++ b/runbot_merge/controllers/dashboard.py @@ -6,12 +6,9 @@ import pathlib import markdown import markupsafe import werkzeug.exceptions -from lxml import etree -from lxml.builder import ElementMaker from odoo.http import Controller, route, request -A = ElementMaker(namespace="http://www.w3.org/2005/Atom") LIMIT = 20 class MergebotDashboard(Controller): @route('/runbot_merge', auth="public", type="http", website=True)