diff options
Diffstat (limited to 'portato/gui/gtk')
-rw-r--r-- | portato/gui/gtk/windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py index 7e4dab2..3ce8ae2 100644 --- a/portato/gui/gtk/windows.py +++ b/portato/gui/gtk/windows.py @@ -750,7 +750,7 @@ class PackageTable: return True def cb_package_ebuild_clicked(self, button): - hook = plugin.hook("open_ebuild", self.actual_package(), self.window) + hook = plugin.hook("open_ebuild", package = self.actual_package(), parent = self.window) hook(EbuildWindow)(self.window, self.actual_package()) return True |