summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--portato/gui/windows/main.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py
index d459bb4..6820f61 100644
--- a/portato/gui/windows/main.py
+++ b/portato/gui/windows/main.py
@@ -779,7 +779,9 @@ class MainWindow (Window):
splash(_("Finishing startup"))
self.window.show_all()
- plugin.hook("after_startup")(lambda x:pass)()
+
+ after = lambda: pass # dummy function doing nothing
+ plugin.hook("after_startup")(after)()
def show_package (self, *args, **kwargs):
self.packageTable.update(*args, **kwargs)