# HG changeset patch # User Mads Kiilerich # Date 2014-05-25 11:47:19 # Node ID 05925bb5f95afc9699739325f45e9f6614bcaebf # Parent 1ab30e9ba0fceb15736ad226ff701325e9682ec9 run-tests: fix invalid reference to stringescape after a36cc85a5b7b diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -882,8 +882,8 @@ class TTest(Test): postout.append(' ' + el) else: if self.NEEDESCAPE(lout): - lout = TTest.stringescape('%s (esc)\n' % - lout.rstrip('\n')) + lout = TTest._stringescape('%s (esc)\n' % + lout.rstrip('\n')) postout.append(' ' + lout) # Let diff deal with it. if r != '': # If line failed. warnonly = 3 # for sure not