commit 84c5a1bffac7dfaf9ddb4e8861f27e026eb6de41 parent c29720743a6f3ef7dce9ee39fd0415a1c9440f11 Author: Dan Stillman <dstillman@zotero.org> Date: Thu, 8 Aug 2013 14:32:44 -0400 Tweak error message for OS.File errors during file sync Diffstat:
| M | chrome/content/zotero/xpcom/storage.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/storage.js b/chrome/content/zotero/xpcom/storage.js @@ -1075,7 +1075,7 @@ Zotero.Sync.Storage = new function () { } Zotero.debug(e); Zotero.debug(e.toString()); - throw new Error("Error " + e.operation + " " + nsIFile.path); + throw new Error("Error for operation '" + e.operation + "' for " + nsIFile.path); } throw e;