Don't use extended character in debug message

This commit is contained in:
Dan Stillman 2011-05-11 07:09:18 +00:00
parent 12044afe3b
commit e901d51300

View File

@ -2033,7 +2033,7 @@ Zotero.Sync.Server = new function () {
if (!wait || isNaN(wait)) {
wait = 5000;
}
Zotero.debug(msg + " waiting " + wait + "ms before next check");
Zotero.debug(msg + " -- waiting " + wait + "ms before next check");
_checkTimer = setTimeout(function () { callback(mode); }, wait);
return true;
}