minor scrubs

This commit is contained in:
Aaron Seigo 2011-05-26 14:04:12 +02:00
parent e7d40b158e
commit 670f73702a

View File

@ -506,7 +506,7 @@ QString Signing::signerOf(const KUrl &package, const KUrl &signature) const
const QString packagePath = package.path(); const QString packagePath = package.path();
if (!QFile::exists(packagePath)) { if (!QFile::exists(packagePath)) {
kDebug() << "Plasmoid package doesn't exists: signature verification aborted."; kDebug() << "Package doesn't exists: signature verification aborted.";
return QString(); return QString();
} }
@ -514,7 +514,7 @@ QString Signing::signerOf(const KUrl &package, const KUrl &signature) const
: signature.path(); : signature.path();
if (!QFile::exists(signaturePath)) { if (!QFile::exists(signaturePath)) {
kDebug() << "Plasmoid signature does not exist: signature verification aborted."; kDebug() << "Signature does not exist: signature verification aborted.";
return QString(); return QString();
} }