From: Ian Jackson Date: Sun, 14 Aug 2011 20:26:27 +0000 (+0100) Subject: Fix a debugging message which was spuriously sent to stderr. X-Git-Tag: debian/2.1.0~16 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=66c8da349faaa0aab432a2e8b7ccbccf2c01b958;hp=12d617377db6d1e075bf00a67a37bbad8585c4ed;p=autopkgtest.git Fix a debugging message which was spuriously sent to stderr. Thanks to report and fix from Timo Lindfors. --- diff --git a/debian/changelog b/debian/changelog index 55f529e..c54e10f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ autopkgtest (2.0.1) unstable; urgency=medium - Do not duplicate previous stanzas (closes: #637333). - Make adt-run --quiet work (closes: #637350). - Make "build-needed" restriction work (closes: #637353). + - Fix a debugging message which was spuriously sent to stderr. -- diff --git a/runner/adt-run b/runner/adt-run index 0e9168e..1de5934 100755 --- a/runner/adt-run +++ b/runner/adt-run @@ -1052,7 +1052,7 @@ class Field_Tests(FieldIgnore): pass class Field_Depends(FieldBase): def parse(f): - print >>sys.stderr, "Field_Depends:", `f.stz`, `f.base`, `f.tnames`, `f.vl` + debug("Field_DependS: %s %s %s %s" % (f.stz, f.base, f.tnames, f.vl), 2) dl = map(lambda x: x.strip(), flatten(map(lambda (lno, v): v.split(','), f.vl))) re = regexp.compile('[^-.+:~0-9a-z()<>=*@]')