Fix typo in the cookie jar debug message.

1.x
Max Edmands 2013-10-17 09:44:23 -07:00 committed by Ariya Hidayat
parent 23df8811a1
commit 94e63bfa04
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ CookieJar *CookieJar::instance(QString cookiesFile)
static CookieJar *singleton = NULL;
if (!singleton) {
if (cookiesFile.isEmpty()) {
qDebug() << "CookieJar - Created but will not store cookies (use option '--cookies-file=<filename>' to enable persisten cookie storage)";
qDebug() << "CookieJar - Created but will not store cookies (use option '--cookies-file=<filename>' to enable persistent cookie storage)";
} else {
qDebug() << "CookieJar - Created and will store cookies in:" << cookiesFile;
}