Merge lp://staging/~deejay1/groundcontrol/bugfix-lp-520904 into lp://staging/groundcontrol

Proposed by Łukasz Jernaś
Status: Merged
Merge reported by: Martin Owens
Merged at revision: not available
Proposed branch: lp://staging/~deejay1/groundcontrol/bugfix-lp-520904
Merge into: lp://staging/groundcontrol
Diff against target: 26 lines (+5/-0)
1 file modified
nautilus-groundcontrol.py (+5/-0)
To merge this branch: bzr merge lp://staging/~deejay1/groundcontrol/bugfix-lp-520904
Reviewer Review Type Date Requested Status
Martin Owens Approve
Review via email: mp+19886@code.staging.launchpad.net
To post a comment you must log in.
Revision history for this message
Łukasz Jernaś (deejay1) wrote :

This should fix the translation issue as far as I can tell...

Revision history for this message
Martin Owens (doctormo) wrote :

Good to go, merged in.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'nautilus-groundcontrol.py'
--- nautilus-groundcontrol.py 2010-02-18 09:31:54 +0000
+++ nautilus-groundcontrol.py 2010-02-22 17:11:13 +0000
@@ -19,10 +19,12 @@
19"""19"""
2020
21import os21import os
22import gettext
22import gtk23import gtk
23import gio24import gio
24import gobject25import gobject
25import nautilus26import nautilus
27import locale
26import logging28import logging
27import webbrowser29import webbrowser
2830
@@ -54,6 +56,9 @@
54# Do not use launchpadlib within this main thread56# Do not use launchpadlib within this main thread
55# It's not thread safe and causes lots of errors.57# It's not thread safe and causes lots of errors.
5658
59locale.setlocale(locale.LC_ALL, '')
60gettext.install(__appname__, unicode=True)
61
57print _("Initializing %s-%s extension" % (__appname__, __version__))62print _("Initializing %s-%s extension" % (__appname__, __version__))
58BIN_DIR = './bin'63BIN_DIR = './bin'
59HOME_DIR = os.path.expanduser('~/')64HOME_DIR = os.path.expanduser('~/')

Subscribers

People subscribed via source and target branches