TW-1588: Fix broken export scripts

This commit is contained in:
Wilhelm Schuermann
2015-03-31 06:57:04 +02:00
parent df209b9b8b
commit 3f394fa164
8 changed files with 10 additions and 8 deletions

View File

@@ -60,7 +60,7 @@ print "<html>\n",
" <tbody>\n";
my $count = 0;
for my $task (split /\n/ms, qx{$command})
for my $task (split "\n", qx{$command})
{
++$count;
my $data = from_json ($task);