You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2013/07/02 22:37:06 UTC

svn commit: r1499104 - /subversion/trunk/tools/dist/backport.pl

Author: danielsh
Date: Tue Jul  2 20:37:06 2013
New Revision: 1499104

URL: http://svn.apache.org/r1499104
Log:
* tools/dist/backport.pl
  (maybe_revert): Fix a harmless warning.

Modified:
    subversion/trunk/tools/dist/backport.pl

Modified: subversion/trunk/tools/dist/backport.pl
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/backport.pl?rev=1499104&r1=1499103&r2=1499104&view=diff
==============================================================================
--- subversion/trunk/tools/dist/backport.pl (original)
+++ subversion/trunk/tools/dist/backport.pl Tue Jul  2 20:37:06 2013
@@ -276,7 +276,7 @@ sub handle_entry {
 }
 
 sub maybe_revert {
-  "This is both a SIGINT handler, and the tail end of main() in normal runs.";
+  # This is both a SIGINT handler, and the tail end of main() in normal runs.
   system $SVN, qw/revert -R ./ if !$YES and prompt 'Revert? ';
   exit if @_;
 }