mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 13:37:20 +02:00
Import
- Added a \n where missing in an import error message.
This commit is contained in:
parent
f285ae535f
commit
314f64f775
1 changed files with 7 additions and 7 deletions
|
@ -344,7 +344,7 @@ static std::string importTask_1_4_3 (const std::vector <std::string>& lines)
|
|||
{
|
||||
std::string bad;
|
||||
join (bad, "\n", failed);
|
||||
return out.str () + "\nCould not import:\n\n" + bad;
|
||||
return out.str () + "\nCould not import:\n\n" + bad + "\n";
|
||||
}
|
||||
|
||||
return out.str ();
|
||||
|
@ -505,7 +505,7 @@ static std::string importTask_1_5_0 (const std::vector <std::string>& lines)
|
|||
{
|
||||
std::string bad;
|
||||
join (bad, "\n", failed);
|
||||
return out.str () + "\nCould not import:\n\n" + bad;
|
||||
return out.str () + "\nCould not import:\n\n" + bad + "\n";
|
||||
}
|
||||
|
||||
return out.str ();
|
||||
|
@ -667,7 +667,7 @@ static std::string importTask_1_6_0 (const std::vector <std::string>& lines)
|
|||
{
|
||||
std::string bad;
|
||||
join (bad, "\n", failed);
|
||||
return out.str () + "\nCould not import:\n\n" + bad;
|
||||
return out.str () + "\nCould not import:\n\n" + bad + "\n";
|
||||
}
|
||||
|
||||
return out.str ();
|
||||
|
@ -714,7 +714,7 @@ static std::string importTaskCmdLine (const std::vector <std::string>& lines)
|
|||
{
|
||||
std::string bad;
|
||||
join (bad, "\n", failed);
|
||||
return out.str () + "\nCould not import:\n\n" + bad;
|
||||
return out.str () + "\nCould not import:\n\n" + bad + "\n";
|
||||
}
|
||||
|
||||
return out.str ();
|
||||
|
@ -842,7 +842,7 @@ static std::string importTodoSh_2_0 (const std::vector <std::string>& lines)
|
|||
{
|
||||
std::string bad;
|
||||
join (bad, "\n", failed);
|
||||
return out.str () + "\nCould not import:\n\n" + bad;
|
||||
return out.str () + "\nCould not import:\n\n" + bad + "\n";
|
||||
}
|
||||
return out.str ();
|
||||
}
|
||||
|
@ -905,7 +905,7 @@ static std::string importText (const std::vector <std::string>& lines)
|
|||
{
|
||||
std::string bad;
|
||||
join (bad, "\n", failed);
|
||||
return out.str () + "\nCould not import:\n\n" + bad;
|
||||
return out.str () + "\nCould not import:\n\n" + bad + "\n";
|
||||
}
|
||||
|
||||
return out.str ();
|
||||
|
@ -1150,7 +1150,7 @@ static std::string importCSV (const std::vector <std::string>& lines)
|
|||
{
|
||||
std::string bad;
|
||||
join (bad, "\n", failed);
|
||||
return out.str () + "\nCould not import:\n\n" + bad;
|
||||
return out.str () + "\nCould not import:\n\n" + bad + "\n";
|
||||
}
|
||||
|
||||
return out.str ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue