Tags are comma-separated

This commit is contained in:
Solomon Peachy 2014-01-28 08:13:13 -05:00
parent d36807a0ab
commit a9349a131b
1 changed files with 2 additions and 2 deletions

View File

@ -38,9 +38,9 @@ foreach my $file (@files)
$article =~ m/(.*\.txt).*/;
if(exists($tags{$1})) {
$tags{$1} .= $category . " ";
$tags{$1} .= ", $category";
} else {
$tags{$1} = $category . " ";
$tags{$1} = $category;
}
}