From 9f8ba87f60249139f18f10ab4ba84b187a97da33 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Wed, 10 May 2006 23:02:07 +0000 Subject: add kwargs support for notifications --- lib/python/Screens/InfoBarGenerics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/python/Screens') diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index d1520071..2bae4296 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1365,9 +1365,9 @@ class InfoBarNotifications: print "open",n cb = n[0] if cb is not None: - self.session.openWithCallback(cb, *n[1:]) + self.session.openWithCallback(cb, n[1], *n[2], **n[3]) else: - self.session.open(*n[1:]) + self.session.open(n[1], *n[2], **n[3]) class InfoBarServiceNotifications: def __init__(self): -- cgit v1.2.3