diff options
author | Frank Fang <FrankFang1990@gmail.com> | 2018-06-02 02:33:16 +0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-06-01 20:33:16 +0200 |
commit | d582d67c523a7982a50c01e2302d0cf0bb0b6cfc (patch) | |
tree | 1a7e5aa1aef7bac90c5970f0445c84570020fe54 | |
parent | b723ab126f5cc37b27d914e6cbdba9a4f9ce1c71 (diff) |
Lint runtime.ts (#73)
-rw-r--r-- | runtime.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime.ts b/runtime.ts index a10e8a66f..2d8b624bb 100644 --- a/runtime.ts +++ b/runtime.ts @@ -149,7 +149,7 @@ export function resolveModule( let fetchResponse; try { fetchResponse = os.codeFetch(moduleSpecifier, containingFile); - } catch(e) { + } catch (e) { // TODO Only catch "no such file or directory" errors. Need error codes. return null; } |