www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit e901d5130070da1d1774b068650f8f384eff2096
parent 12044afe3b349915436c75d7b71c702cd634d850
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed, 11 May 2011 07:09:18 +0000

Don't use extended character in debug message


Diffstat:
Mchrome/content/zotero/xpcom/sync.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/sync.js b/chrome/content/zotero/xpcom/sync.js @@ -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; }