ignore missing class methods in Vips.py

thanks Ben

see https://github.com/jcupitt/libvips/issues/199
This commit is contained in:
John Cupitt 2014-12-05 12:50:53 +00:00
parent ecc0975667
commit aa6c883434
1 changed files with 6 additions and 2 deletions

View File

@ -933,8 +933,12 @@ def generate_class_method(name):
for nickname in class_methods:
logging.debug('adding %s as a class method' % nickname)
# some may be missing in this vips, eg. we might not have "webpload"
try:
method = generate_class_method(nickname)
setattr(Vips.Image, nickname, method)
except Error:
pass
Image = override(Image)
__all__.append('Image')