Tweak error message text

To avoid a false positive gettext unterminated string warning.
This commit is contained in:
Oliver Hamlet
2016-11-24 17:58:39 +00:00
parent 26d7f25e2a
commit c582b5e971
+1 -1
View File
@@ -192,7 +192,7 @@
return;
}
if (plugin.name !== this.name) {
throw new Error(`Cannot update ${this.name}'s data using data for ${plugin.name}`);
throw new Error(`Cannot update data for ${this.name} using data for ${plugin.name}`);
}
Object.getOwnPropertyNames(plugin).forEach((property) => {