Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Fix a problem when you put more than one option in buildout file. #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

rage2000
Copy link

Example:

env = DJANGO_SETTINGS_MODULE=mysettings
LANG=fr_FR.UTF-8
LC_ALL=fr_FR.UTF-8

the recipe generated that xml code:

DJANGO_SETTINGS_MODULE=mysettings
LANG=fr_FR.UTF-8
LC_ALL=fr_FR.UTF-8

rather that the good one:

DJANGO_SETTINGS_MODULE=mysettings
LANG=fr_FR.UTF-8
LC_ALL=fr_FR.UTF-8

Example:

env                     = DJANGO_SETTINGS_MODULE=mysettings
                          LANG=fr_FR.UTF-8
                          LC_ALL=fr_FR.UTF-8

the recipe generated that xml code:

<env>DJANGO_SETTINGS_MODULE=mysettings
LANG=fr_FR.UTF-8
LC_ALL=fr_FR.UTF-8</env>

rather that the good one:

<env>DJANGO_SETTINGS_MODULE=mysettings</env>
<env>LANG=fr_FR.UTF-8</env>
<env>LC_ALL=fr_FR.UTF-8</env>
@Fantomas42
Copy link

Hi rage2000,
this is exactly what I am looking for !

Shaunsephton do have planned to merge this pull request and make a new release on pypi ?

sergeyv referenced this pull request in mooballit/buildout.recipe.uwsgi Mar 19, 2013
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants