diff options
author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-05-17 05:27:49 -0400 |
---|---|---|
committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-05-17 19:43:23 -0400 |
commit | 1846eb3c772542563cf3d30b0fa865deb26ffdba (patch) | |
tree | 5dbe4812389244ecbfd64e3ce70f7a9d80a5ec87 /mesonbuild/interpreter.py | |
parent | 34e4d32ac75fa757373bfb60fa22233ab1f38ef6 (diff) | |
download | meson-1846eb3c772542563cf3d30b0fa865deb26ffdba.zip meson-1846eb3c772542563cf3d30b0fa865deb26ffdba.tar.gz meson-1846eb3c772542563cf3d30b0fa865deb26ffdba.tar.bz2 |
Add super call in RunTargetHolder.
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index c782265..987e32b 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -573,6 +573,7 @@ class CustomTargetHolder(TargetHolder): class RunTargetHolder(InterpreterObject): def __init__(self, name, command, args, dependencies, subdir): + super().__init__() self.held_object = build.RunTarget(name, command, args, dependencies, subdir) def __repr__(self): |