diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-12-25 22:12:50 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-25 22:12:50 -0800 |
commit | 9a3f203085f364c46d9484977e5d6aa44c8cc2f4 (patch) | |
tree | faad09d16f700b2fa7293bc12cc58d0a42fe3351 /src | |
parent | e91fc01a60a2cb27fa436cedef9181d8bddf01ac (diff) |
fix typo
Diffstat (limited to 'src')
-rw-r--r-- | src/library.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js index 742e0968..c5347045 100644 --- a/src/library.js +++ b/src/library.js @@ -611,7 +611,7 @@ LibraryManager.library = { }, deleteFile: function(path) { - var path = FS.analyzePath(path); + path = FS.analyzePath(path); if (!path.parentExists || !path.exists) { throw 'Invalid path ' + path; } |