You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by rd...@apache.org on 2008/06/30 21:44:34 UTC

svn commit: r672877 - /incubator/rat/main/trunk/scan/src/main/org/apache/rat/scan/connect.py

Author: rdonkin
Date: Mon Jun 30 12:44:34 2008
New Revision: 672877

URL: http://svn.apache.org/viewvc?rev=672877&view=rev
Log:
Fix bug

Modified:
    incubator/rat/main/trunk/scan/src/main/org/apache/rat/scan/connect.py

Modified: incubator/rat/main/trunk/scan/src/main/org/apache/rat/scan/connect.py
URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/scan/src/main/org/apache/rat/scan/connect.py?rev=672877&r1=672876&r2=672877&view=diff
==============================================================================
--- incubator/rat/main/trunk/scan/src/main/org/apache/rat/scan/connect.py (original)
+++ incubator/rat/main/trunk/scan/src/main/org/apache/rat/scan/connect.py Mon Jun 30 12:44:34 2008
@@ -117,7 +117,7 @@
         subprocess.Popen('gpg --armor --detach-sig ' + path, shell=True).wait()
         
         
-        prefix = base_file_name[0:-14]
+        prefix = base_file_name[0:-15]
         auditor = diff.Auditor(build_dir, prefix)
         auditor.printSignatureChecks()
         latestDiffs = auditor.latestDiffs()