You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2011/07/20 23:21:14 UTC

svn commit: r1148945 - /subversion/trunk/tools/dist/release.py

Author: cmpilato
Date: Wed Jul 20 21:21:13 2011
New Revision: 1148945

URL: http://svn.apache.org/viewvc?rev=1148945&view=rev
Log:
* tools/dist/release.py
  (compare_changes): Fix invocation of logging.debug().

Found by: danielsh

Modified:
    subversion/trunk/tools/dist/release.py

Modified: subversion/trunk/tools/dist/release.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/release.py?rev=1148945&r1=1148944&r2=1148945&view=diff
==============================================================================
--- subversion/trunk/tools/dist/release.py (original)
+++ subversion/trunk/tools/dist/release.py Wed Jul 20 21:21:13 2011
@@ -368,7 +368,7 @@ def compare_changes(repos, branch, revis
     import difflib
     for diff_line in difflib.unified_diff(trunk_CHANGES, branch_CHANGES):
         saw_diff = True
-        logging.debug(diff_line)
+        logging.debug('%s', diff_line)
     if saw_diff:
         raise RuntimeError('CHANGES not synced between trunk and branch')