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:58 UTC

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

Author: rdonkin
Date: Mon Jun 30 12:44:57 2008
New Revision: 672878

URL: http://svn.apache.org/viewvc?rev=672878&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=672878&r1=672877&r2=672878&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:57 2008
@@ -117,7 +117,7 @@
         subprocess.Popen('gpg --armor --detach-sig ' + path, shell=True).wait()
         
         
-        prefix = base_file_name[0:-15]
+        prefix = base_file_name[0:-16]
         auditor = diff.Auditor(build_dir, prefix)
         auditor.printSignatureChecks()
         latestDiffs = auditor.latestDiffs()