From: martinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Date: Mon, 14 Jan 2013 17:38:28 +0000 (+0000)
Subject: fixed apparent change in Carp yielding an extra . after error msg
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2f10201d21af91034ac31a45177de90d4ccef43b;p=biopieces.git

fixed apparent change in Carp yielding an extra . after error msg

git-svn-id: http://biopieces.googlecode.com/svn/trunk@2074 74ccb610-7750-0410-82ae-013aeee3265d
---

diff --git a/code_perl/Maasha/Common.pm b/code_perl/Maasha/Common.pm
index 0e86c2e..079587b 100644
--- a/code_perl/Maasha/Common.pm
+++ b/code_perl/Maasha/Common.pm
@@ -180,7 +180,7 @@ sub error
     $file_max    = length "File";
     $line_max    = length "Line";
 
-    if ( $line =~ /^ at (.+) line (\d+)$/ )
+    if ( $line =~ /^ at (.+) line (\d+)\.?$/ )
     {
         $file    = $1;
         $line_no = $2;