# HG changeset patch # User Bernhard Urban # Date 1400683317 -7200 # Node ID 4900010a15d2b89d3df6c54d914c79e79b863885 # Parent de8296c27680337107bc07e23f2ab1178ae75f4a mx archive: fix log message diff -r de8296c27680 -r 4900010a15d2 mxtool/mx.py --- a/mxtool/mx.py Wed May 21 15:34:35 2014 +0200 +++ b/mxtool/mx.py Wed May 21 16:41:57 2014 +0200 @@ -101,7 +101,7 @@ existingSource = zf._provenance.get(arcname, None) isOverwrite = False if existingSource and existingSource != source: - log('warning: ' + self.path + ': overwriting ' + arcname + '\n new: ' + source + '\n old: ' + existingSource) + log('warning: ' + self.path + ': avoid overwrite of ' + arcname + '\n new: ' + source + '\n old: ' + existingSource) isOverwrite = True zf._provenance[arcname] = source return isOverwrite