From 3cd0cbde8a3af86c8d72253e4da2a79e22cafee7 Mon Sep 17 00:00:00 2001 From: François Andriot Date: Sun, 9 Apr 2023 19:06:32 +0200 Subject: Fix python3 indentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: François Andriot --- kexi/plugins/scripting/scripts/exportxhtml/ExportXHTML.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kexi/plugins/scripting/scripts/exportxhtml/ExportXHTML.py') diff --git a/kexi/plugins/scripting/scripts/exportxhtml/ExportXHTML.py b/kexi/plugins/scripting/scripts/exportxhtml/ExportXHTML.py index eff0e6368..2e5fa20e9 100644 --- a/kexi/plugins/scripting/scripts/exportxhtml/ExportXHTML.py +++ b/kexi/plugins/scripting/scripts/exportxhtml/ExportXHTML.py @@ -147,13 +147,13 @@ class GuiApp: raise Exception("Import of the Kross GUI module failed.") self.dialog = gui.Dialog("Export XHTML") - self.dialog.addLabel(self.dialog, "Export a table- or query-datasource to a XHTML-file.") + self.dialog.addLabel(self.dialog, "Export a table- or query-datasource to a XHTML-file.") datasourceitems = self.datasource.getSources() - self.datasourcelist = self.dialog.addList(self.dialog, "Datasource:", datasourceitems) + self.datasourcelist = self.dialog.addList(self.dialog, "Datasource:", datasourceitems) styleitems = ["Plain", "Paper", "Blues"] - self.stylelist = self.dialog.addList(self.dialog, "Style:", styleitems) + self.stylelist = self.dialog.addList(self.dialog, "Style:", styleitems) #queryframe = Tkinter.Frame(frame) #queryframe.pack() -- cgit v1.2.3