diff options
author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-05-17 04:41:54 -0400 |
---|---|---|
committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-05-17 04:41:54 -0400 |
commit | ea636fcd518f69c52e2a2753c5802e2bae66ab0d (patch) | |
tree | 3706c5f523bf50bd184542381c94ef91a2b3468b /mesonbuild/modules/gnome.py | |
parent | e66465369d3150cf4efcff8682c07197935ef3bc (diff) | |
download | meson-ea636fcd518f69c52e2a2753c5802e2bae66ab0d.zip meson-ea636fcd518f69c52e2a2753c5802e2bae66ab0d.tar.gz meson-ea636fcd518f69c52e2a2753c5802e2bae66ab0d.tar.bz2 |
Remove unused variables.
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r-- | mesonbuild/modules/gnome.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 134060f..b8092b2 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -730,7 +730,7 @@ class GnomeModule(ExtensionModule): return args - def gtkdoc_html_dir(self, state, args, kwarga): + def gtkdoc_html_dir(self, state, args, kwargs): if len(args) != 1: raise MesonException('Must have exactly one argument.') modulename = args[0] |