Skip to content
Snippets Groups Projects
Commit ada092c0 authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Join description line components with a space 'cos that's how SP splits them.

parent a0e9d8f3
No related branches found
No related tags found
No related merge requests found
......@@ -183,7 +183,7 @@ sub create_xrefs {
my $description;
foreach my $line (@all_lines) {
my ($description_only) = $line =~ /^DE\s+(.+)/;
$description .= $description_only if ($description_only);
$description .= " " . $description_only if ($description_only);
}
$xref->{DESCRIPTION} = $description;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment