# HG changeset patch # User Benoit Boissinot # Date 1165764261 -3600 # Node ID 7c12958eba263d92cb2a42f14a7bb6aaddb188aa # Parent f6f16f87104953d2f9b42676960e112e36f91afa debuginstall: fix an incorrect variable diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -895,7 +895,7 @@ def debuginstall(ui): if files != [fa]: ui.write(_(" unexpected patch output!")) ui.write(_(" (you may have an incompatible version of patch)\n")) - ui.write(data) + ui.write(output) problems += 1 a = file(fa).read() if a != b: