gdal_warp.py: no_data_dst is passed to -srcnodata instead of -dstnodata
Adding a ticket for this so I don't forget about it: !390 (merged) introduced this code (which has been moved to gdal_warp.py):
if no_data_src is not None:
options += ["-srcnodata", str(no_data_src)]
if no_data_dst is not None:
options += ["-srcnodata", str(no_data_dst)]
and @afiche mentioned no_data_dst
was not meant to be passed to -srcnodata
and should be fixed.