diff options
Diffstat (limited to 'sphinx/domains/c.py')
-rw-r--r-- | sphinx/domains/c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index fe5ef6f12..b035e9e59 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -174,7 +174,7 @@ class CObject(ObjectDescription): ctype, argname = arg.rsplit(' ', 1) self._parse_type(param, ctype) # separate by non-breaking space in the output - param += nodes.emphasis(' ' + argname, u'\xa0' + argname) + param += nodes.emphasis(' ' + argname, '\xa0' + argname) except ValueError: # no argument name given, only the type self._parse_type(param, arg) |