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 merge requests found
......@@ -63,9 +63,9 @@ QString GitSubmitEditorPanelData::authorString() const
QString rc;
rc += QLatin1Char('"');
rc += author;
rc += QLatin1String(" <");
rc += QLatin1String("\" <");
rc += email;
rc += QLatin1String(">\"");
rc += QLatin1Char('>');
return rc;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment