yellow team mailing list archive
-
yellow team
-
Mailing list archive
-
Message #00906
[Merge] lp:~frankban/lpsetup/lc-all into lp:lpsetup
Francesco Banconi has proposed merging lp:~frankban/lpsetup/lc-all into lp:lpsetup.
Requested reviews:
Yellow Squad (yellow)
For more details, see:
https://code.launchpad.net/~frankban/lpsetup/lc-all/+merge/110758
== Changes ==
Replaced LANG=C with LC_ALL=C to avoid errors during postgres cluster creation.
--
https://code.launchpad.net/~frankban/lpsetup/lc-all/+merge/110758
Your team Yellow Squad is requested to review the proposed merge of lp:~frankban/lpsetup/lc-all into lp:lpsetup.
=== modified file 'lpsetup/subcommands/install.py'
--- lpsetup/subcommands/install.py 2012-05-24 15:59:45 +0000
+++ lpsetup/subcommands/install.py 2012-06-18 09:21:37 +0000
@@ -200,7 +200,7 @@
reposirory.format(distro=distro))
call('apt-get', 'update')
# Install base and Launchpad deb packages.
- apt_get_install(*LP_PACKAGES, LANG='C', caller=call)
+ apt_get_install(*LP_PACKAGES, LC_ALL='C', caller=call)
def setup_launchpad(user, dependencies_dir, directory, valid_ssh_keys):