conftypes: Set namedweight correcly for QtFont.

This commit is contained in:
Florian Bruhin 2014-08-07 07:41:06 +02:00
parent 934aaf80c6
commit 186a831482

View File

@ -691,7 +691,7 @@ class QtFont(Font):
match = self.font_regex.match(value)
style = match.group('style')
weight = match.group('weight')
namedweight = match.group('weight')
namedweight = match.group('namedweight')
size = match.group('size')
family = match.group('family')
if style: