mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Bug Fix
- Fixed bug that generated an export file that was incompatible with task 1.7.1 import. Now there is a smooth migration path back to 1.7.1 in case 1.8.0 proves unacceptable.
This commit is contained in:
parent
605eb397fc
commit
f7f8b1aee5
2 changed files with 3 additions and 3 deletions
|
@ -350,7 +350,7 @@ std::string Task::composeCSV () const
|
||||||
{
|
{
|
||||||
std::stringstream out;
|
std::stringstream out;
|
||||||
|
|
||||||
out << id << ",";
|
// Deliberately no 'id'.
|
||||||
out << "'" << get ("uuid") << "',"; // No i18n
|
out << "'" << get ("uuid") << "',"; // No i18n
|
||||||
out << "'" << get ("status") << "',"; // No i18n
|
out << "'" << get ("status") << "',"; // No i18n
|
||||||
|
|
||||||
|
|
|
@ -811,8 +811,8 @@ std::string handleExport ()
|
||||||
{
|
{
|
||||||
std::stringstream out;
|
std::stringstream out;
|
||||||
|
|
||||||
out << "'id',"
|
// Deliberately no 'id'.
|
||||||
<< "'uuid',"
|
out << "'uuid',"
|
||||||
<< "'status',"
|
<< "'status',"
|
||||||
<< "'tags',"
|
<< "'tags',"
|
||||||
<< "'entry',"
|
<< "'entry',"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue