Skip to content
Snippets Groups Projects
Commit 09d5ec7d authored by dt's avatar dt
Browse files

Fix quoting in git commit, fixes committing for me on windows

Reviewed-By: Ossi
parent bcd279a1
No related branches found
No related tags found
No related merge requests found
...@@ -63,9 +63,9 @@ QString GitSubmitEditorPanelData::authorString() const ...@@ -63,9 +63,9 @@ QString GitSubmitEditorPanelData::authorString() const
QString rc; QString rc;
rc += QLatin1Char('"'); rc += QLatin1Char('"');
rc += author; rc += author;
rc += QLatin1String(" <"); rc += QLatin1String("\" <");
rc += email; rc += email;
rc += QLatin1String(">\""); rc += QLatin1Char('>');
return rc; return rc;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment