Skip to content

Commit

Permalink
Merge pull request #3 from jikamens/master
Browse files Browse the repository at this point in the history
End times should be outside of %"...%"
  • Loading branch information
jbalcorn authored Feb 26, 2020
2 parents 77f6819 + c8c0e9b commit d4d11a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ical2rem.pl
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,7 @@ sub _process_todos {
print "%\"", &quote($event->{'SUMMARY'});
print(" at ", &quote($event->{'LOCATION'}))
if ($do_location and $event->{'LOCATION'});
print "\%\"";
if ($do_end_times and ($start->hour or $start->minute or
$end->hour or $end->minute)) {
my $start_date = $start->strftime("%F");
Expand All @@ -352,7 +353,7 @@ sub _process_todos {
}
print " (-", join(" ", @pieces), ")";
}
print "\%\"%\n";
print "%\n";
}
}
}
Expand Down

0 comments on commit d4d11a4

Please sign in to comment.