diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-09-02 15:58:07 +0100 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-09-02 15:58:07 +0100 |
commit | cba4a93a348415b6cce5bc134224bb0b8803963b (patch) | |
tree | 964068a92644403052d135e6fa9d28a73c15acee /methods.py | |
parent | 39228830ce726657d4b81a5eab0d68cf9530434d (diff) | |
download | redot-engine-cba4a93a348415b6cce5bc134224bb0b8803963b.tar.gz |
Merge python EnvironmentError, IOError and WindowsError into OSError.
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/methods.py b/methods.py index 44e381014d..bcb6d13e1f 100644 --- a/methods.py +++ b/methods.py @@ -185,7 +185,7 @@ def write_modules(module_list): unregister_cpp += "#ifdef MODULE_" + name.upper() + "_ENABLED\n" unregister_cpp += "\tunregister_" + name + "_types();\n" unregister_cpp += "#endif\n" - except IOError: + except OSError: pass modules_cpp = """// register_module_types.gen.cpp @@ -522,7 +522,7 @@ def generate_cpp_hint_file(filename): try: with open(filename, "w") as fd: fd.write("#define GDCLASS(m_class, m_inherits)\n") - except IOError: + except OSError: print("Could not write cpp.hint file.") |