diff sat_frontends/tools/xmlui.py @ 2575:824ef7f64286

tools (xmlui): fixed XMLUIDialog signature
author Goffi <goffi@goffi.org>
date Fri, 06 Apr 2018 15:41:26 +0200
parents 26edcf3a30eb
children 9446f1ea9eac
line wrap: on
line diff
--- a/sat_frontends/tools/xmlui.py	Thu Apr 05 17:42:05 2018 +0200
+++ b/sat_frontends/tools/xmlui.py	Fri Apr 06 15:41:26 2018 +0200
@@ -765,7 +765,7 @@
 class XMLUIDialog(XMLUIBase):
     dialog_factory = None
 
-    def __init__(self, host, parsed_dom, title=None, flags=None, callback=None, ignore=None, profile=C.PROF_KEY_NONE):
+    def __init__(self, host, parsed_dom, title=None, flags=None, callback=None, ignore=None, whitelist=None, profile=C.PROF_KEY_NONE):
         super(XMLUIDialog, self).__init__(host, parsed_dom, title=title, flags=flags, callback=callback, profile=profile)
         top=parsed_dom.documentElement
         dlg_elt =  self._getChildNode(top, "dialog")