Is there a correction for this? I'm using cvs 1.12.12 and getting this
error
/var/cvs/release/QA/6_3_7/v6_3_7 Technical Notes.doc,v <-- v6_3_7
Technical Notes.doc
new revision: 1.3; previous revision: 1.2
Your transaction ID is: 20638 (new transaction)
Could not open comma-v file /var/cvs/release/QA/6_3_7/v6_3_7,v or
/var/cvs/release/QA/6_3_7/Attic/v6_3_7,v: No such file or directory at
/var/www/html/bugzilla/logmsg.archive line 84
It's obviously not handling the spaces properly, is there a quick fix
to this? thank you.
the sub it's calling in logmsg.archive
sub extractTag($$) {
my ($filename, $version) = @_;
my $file = $repository->member($filename);
if (defined $file) {
return $file->branchFor($version);
} else {
return "(unknown)";
}
}