1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-20 14:03:36 +03:00

B #-: Fix typo (#3191)

This commit is contained in:
Jan Orel 2024-08-03 19:22:48 +02:00 committed by GitHub
parent 274ad4fca9
commit f0ce1c110d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@ module OneCfg
if ::File.exist?(@name)
if Psych::VERSION > '4.0'
@content = YAML.load_file(@name, :alises => true)
@content = YAML.load_file(@name, :aliases => true)
else
@content = YAML.load_file(@name)
end