Tweak error message for OS.File errors during file sync

This commit is contained in:
Dan Stillman 2013-08-08 14:32:44 -04:00
parent c29720743a
commit 84c5a1bffa

View file

@ -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;