Skip to content

Commit

Permalink
remove unicode workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
visr committed Jan 12, 2022
1 parent 0964094 commit 1ee27d3
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions gen/combine_gdal_doxygen_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,3 @@
elem.remove(subelem)

tree.write(outxml)

# remove hidden character that the julia parser won't accept, fixed in GDAL 3.4.1
# https://github.com/OSGeo/gdal/pull/5043
with open(outxml) as f:
clean_text = f.read().replace('‬', '')
with open(outxml, "w") as f:
f.write(clean_text)

0 comments on commit 1ee27d3

Please sign in to comment.