summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmodules/geneve/wb.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/geneve/wb.pl b/modules/geneve/wb.pl
index 66013d6..e16dc5d 100755
--- a/modules/geneve/wb.pl
+++ b/modules/geneve/wb.pl
@@ -10,10 +10,11 @@ sub vs2osisref {
$ref =~ s/,/:/;
-# print ("I received", $_[0]," split into ref:", $ref, " and context :",$context."\n");
+
my $return = `vs2osisref "$ref" $context de`;
- chop($return)
+ $return =~ s/\n$//;
+ $return;
}