diff --git a/src/Task.cpp b/src/Task.cpp index 99de67d17..8aefd4956 100644 --- a/src/Task.cpp +++ b/src/Task.cpp @@ -350,7 +350,7 @@ std::string Task::composeCSV () const { std::stringstream out; - out << id << ","; + // Deliberately no 'id'. out << "'" << get ("uuid") << "',"; // No i18n out << "'" << get ("status") << "',"; // No i18n diff --git a/src/command.cpp b/src/command.cpp index 23210c28d..d62b4ce1a 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -811,8 +811,8 @@ std::string handleExport () { std::stringstream out; - out << "'id'," - << "'uuid'," + // Deliberately no 'id'. + out << "'uuid'," << "'status'," << "'tags'," << "'entry',"