Skip to content

Commit be2f276

Browse files
committed
src - Fix order of min/max values in osm_xml export
1 parent 764607d commit be2f276

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

overpy/format/osm_xml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ def dump(result, fp):
3131
fp.write(
3232
'<bounds minlat="{0:f}" minlon="{1:f}" maxlat="{2:f}" maxlon="{3:f}"/>\n'.format(
3333
lat_min,
34-
lat_max,
3534
lon_min,
35+
lat_max,
3636
lon_max
3737
)
3838
)

0 commit comments

Comments
 (0)