Skip to content

Commit

Permalink
Fix uninitialized constant Metanorma::Ogc::Gml (NameError)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwkwan committed Aug 16, 2024
1 parent b83ef38 commit 1177e57
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/metanorma/plugin/lutaml/lutaml_gml_dictionary_base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ def get_gml_dictionary(parent, orig_gml_path)
gml_path = Utils.relative_file_path(
parent.document, orig_gml_path
)
Ogc::Gml::Dictionary.from_xml(xml_content(gml_path))

::Ogc::Gml::Dictionary.from_xml(xml_content(gml_path))
end

def xml_content(filepath)
Expand Down

0 comments on commit 1177e57

Please sign in to comment.