Fix syntax error in varDump

This commit is contained in:
Aurimas Vinckevicius 2015-02-10 21:26:50 -06:00
parent 8e25a4bdf3
commit cae9a89b9d

View File

@ -1238,7 +1238,7 @@ Zotero.Utilities = {
if (isError) {
header = obj.constructor.name ? obj.constructor.name : 'Error';
} else {
header = obj.name ? obj.name + ' ' : '') + 'Exception';
header = (obj.name ? obj.name + ' ' : '') + 'Exception';
}
return header + ': '