Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Abente <martin.abente.lahaye@gmail.com>2010-12-14 17:57:26 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2011-01-22 17:47:23 (GMT)
commitcc0f90feb6f1e4a11cfbcced4ffc435bbfd15c96 (patch)
tree05dda1a3746178ab540675710c32026b003bc3ba
parentfce9d72acadeb20391f66266ad6a1a1d0df3b013 (diff)
Fix typo in activities downgrade message
-rw-r--r--src/jarabe/journal/misc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jarabe/journal/misc.py b/src/jarabe/journal/misc.py
index b01c671..1431d5f 100644
--- a/src/jarabe/journal/misc.py
+++ b/src/jarabe/journal/misc.py
@@ -271,8 +271,8 @@ def launch(bundle, activity_id=None, object_id=None, uri=None, color=None,
def _downgrade_option_alert(bundle):
alert = ConfirmationAlert()
alert.props.title = _('Older Version Of %s Activity') % (bundle.get_name())
- alert.props.msg = _('Do you want to downgrade to version %s\
- ') % (bundle.get_activity_version())
+ alert.props.msg = _('Do you want to downgrade to version %s') % \
+ bundle.get_activity_version()
alert.connect('response', _downgrade_alert_response_cb, bundle)
journalwindow.get_journal_window().add_alert(alert)
alert.show()