diff --git a/accounting/gtkclient.py b/accounting/gtkclient.py index e5fc83a7bbc80021ba948585b298043aef989e7d..aa6ca963ab664bd979d73ed8c7779c8d2d827721 100644 --- a/accounting/gtkclient.py +++ b/accounting/gtkclient.py @@ -21,7 +21,7 @@ def indicate_activity(func_or_str): def decorator(func): @wraps(func) def wrapper(self, *args, **kw): - self.status_description.set_text(description) + self.activity_description.set_text(description) self.activity_indicator.show() self.activity_indicator.start() @@ -40,7 +40,7 @@ def indicate_activity(func_or_str): def indicate_activity_done(func): @wraps(func) def wrapper(self, *args, **kw): - self.status_description.set_text('') + self.activity_description.set_text('') self.activity_indicator.stop() self.activity_indicator.hide()