mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 13:37:20 +02:00
Bug Fix - Bug #243
- Fixed bug that caused due dates and recurrence periods to be quoted on export, which then caused confusion on a subsequent import (thanks to John Florian).
This commit is contained in:
parent
fc8f8957c4
commit
b28575625e
3 changed files with 4 additions and 644 deletions
|
@ -363,12 +363,12 @@ std::string Task::composeCSV () const
|
|||
out << get ("start") << ","; // No i18n
|
||||
|
||||
if (has ("due"))
|
||||
out << "'" << get ("due") << "',"; // No i18n
|
||||
out << get ("due") << ","; // No i18n
|
||||
else
|
||||
out << ","; // No i18n
|
||||
|
||||
if (has ("recur"))
|
||||
out << "'" << get ("recur") << "',"; // No i18n
|
||||
out << get ("recur") << ","; // No i18n
|
||||
else
|
||||
out << ","; // No i18n
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue