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

@@ -49,7 +49,7 @@ print "BEGIN:VCALENDAR\n",
"VERSION:2.0\n",
"PRODID:=//GBF/taskwarrior 1.9.4//EN\n";
for my $task (split /,$/ms, qx{$command})
for my $task (split "\n", qx{$command})
{
my $data = from_json ($task);