diff options
Diffstat (limited to 'modules/gnome.py')
-rw-r--r-- | modules/gnome.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gnome.py b/modules/gnome.py index ad6d5e1..b7330d9 100644 --- a/modules/gnome.py +++ b/modules/gnome.py @@ -285,8 +285,8 @@ class GnomeModule: raise MesonException('html_args values must be strings.') except KeyError: return[] - if len(html_args) > 0: - return ['--htmlargs=' + '@@'.join(new_args)] + if len(new_args) > 0: + return [arg + '@@'.join(new_args)] return [] def gdbus_codegen(self, state, args, kwargs): |