Avoid using underscore in anchor names
Perl's YAML parser (wrongly as far as I can see) rejects any anchor name with an underscore in it.
This commit is contained in:
parent
f59747585d
commit
e116688136
1 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
standard_settings: &standard_settings
|
defaults: &defaults
|
||||||
# The server URL
|
# The server URL
|
||||||
server_url: "www.openstreetmap.org"
|
server_url: "www.openstreetmap.org"
|
||||||
# The generator
|
# The generator
|
||||||
|
@ -79,10 +79,10 @@ standard_settings: &standard_settings
|
||||||
#piwik_signup_goal: 1
|
#piwik_signup_goal: 1
|
||||||
|
|
||||||
development:
|
development:
|
||||||
<<: *standard_settings
|
<<: *defaults
|
||||||
|
|
||||||
production:
|
production:
|
||||||
<<: *standard_settings
|
<<: *defaults
|
||||||
|
|
||||||
test:
|
test:
|
||||||
<<: *standard_settings
|
<<: *defaults
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue