diff options
Diffstat (limited to 'git_superproject.py')
-rw-r--r-- | git_superproject.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git_superproject.py b/git_superproject.py index 651b6dbb..b80f0130 100644 --- a/git_superproject.py +++ b/git_superproject.py | |||
@@ -381,7 +381,7 @@ class Superproject: | |||
381 | try: | 381 | try: |
382 | with open(manifest_path, "w", encoding="utf-8") as fp: | 382 | with open(manifest_path, "w", encoding="utf-8") as fp: |
383 | fp.write(manifest_str) | 383 | fp.write(manifest_str) |
384 | except IOError as e: | 384 | except OSError as e: |
385 | self._LogError("cannot write manifest to : {} {}", manifest_path, e) | 385 | self._LogError("cannot write manifest to : {} {}", manifest_path, e) |
386 | return None | 386 | return None |
387 | return manifest_path | 387 | return manifest_path |