| commit | 896c940a23b2f43f2e69dc68b34c78f5e8d98ab2 | [log] [tgz] |
|---|---|---|
| author | Michal Cierniak <[email protected]> | Fri Jan 15 21:21:34 2016 |
| committer | Michal Cierniak <[email protected]> | Fri Jan 15 21:21:34 2016 |
| tree | e39726ad13c4d36c62308f3b5803518babe08f7a | |
| parent | 7eb0d95bfd337f5fd48758f39948eab08b117f7c [diff] |
Changed NotImplementedError to Exception.
diff --git a/scripts/run.py b/scripts/run.py index d683cd2..be098fd 100755 --- a/scripts/run.py +++ b/scripts/run.py
@@ -65,7 +65,7 @@ elif extension == '.wast': wast_file = options.in_file else: - raise NotImplementedError('unimplemented input file type: %s' % options.in_file) + raise Exception('unimplemented input file type: %s' % options.in_file) wasm_file = os.path.join(temp_dir, basename + '.wasm')