Bug 508780 Followup to make qsgen.py compatible with Python 2.4 r=peterv

This commit is contained in:
Neil Rashbrook 2009-09-19 18:10:09 +01:00
Родитель a9142d831d
Коммит 41eabe691e
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -697,8 +697,10 @@ def writeQuickStub(f, customMethodCalls, member, stubName, isSetter=False):
if isMethod:
code = customMethodCall['code']
elif isGetter:
code = customMethodCall['getter_code']
else:
code = customMethodCall['getter_code' if isGetter else 'setter_code']
code = customMethodCall['setter_code']
stubName = templateName
else:
callTemplate = ""