1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added a missing newline in the juce_tracktion_marketplace keygen

This commit is contained in:
jules 2016-07-15 11:36:18 +01:00
parent 49989308b7
commit a8a7fa28e2

View file

@ -482,7 +482,7 @@ String KeyGeneration::generateExpiringKeyFile (const String& appName,
xml.setAttribute ("expiryTime", String::toHexString (expiryTime.toMilliseconds()));
String comment (KeyFileUtils::createKeyFileComment (appName, userEmail, userName, machineNumbers));
comment << "Expires: " << expiryTime.toString (true, true);
comment << newLine << "Expires: " << expiryTime.toString (true, true);
return KeyFileUtils::createKeyFile (comment, xml, privateKey);
}