diff options
-rw-r--r-- | mesonbuild/scripts/externalproject.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/scripts/externalproject.py b/mesonbuild/scripts/externalproject.py index eefa32e..9650dc2 100644 --- a/mesonbuild/scripts/externalproject.py +++ b/mesonbuild/scripts/externalproject.py @@ -45,7 +45,7 @@ class ExternalProject: f.write(' {} \\\n'.format(path.as_posix().replace(' ', '\\ '))) def write_stampfile(self) -> None: - with open(self.stampfile, 'w', encoding='utf-8') as f: + with open(self.stampfile, 'w', encoding='utf-8'): pass def gnu_make(self) -> bool: |