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:
Tom Hughes 2011-09-24 16:03:15 +01:00
parent f59747585d
commit e116688136

View file

@ -1,4 +1,4 @@
standard_settings: &standard_settings
defaults: &defaults
# The server URL
server_url: "www.openstreetmap.org"
# The generator
@ -79,10 +79,10 @@ standard_settings: &standard_settings
#piwik_signup_goal: 1
development:
<<: *standard_settings
<<: *defaults
production:
<<: *standard_settings
<<: *defaults
test:
<<: *standard_settings
<<: *defaults