diff options
Diffstat (limited to 'dev-python/imaging/files/imaging-1.1.7-dont-run-multiple-viewers.patch')
-rw-r--r-- | dev-python/imaging/files/imaging-1.1.7-dont-run-multiple-viewers.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dev-python/imaging/files/imaging-1.1.7-dont-run-multiple-viewers.patch b/dev-python/imaging/files/imaging-1.1.7-dont-run-multiple-viewers.patch new file mode 100644 index 00000000000..7733a489038 --- /dev/null +++ b/dev-python/imaging/files/imaging-1.1.7-dont-run-multiple-viewers.patch @@ -0,0 +1,10 @@ +--- PIL/ImageShow.py.old 2011-01-29 14:09:12.000000000 -0200 ++++ PIL/ImageShow.py 2011-01-29 14:09:28.000000000 -0200 +@@ -63,7 +63,7 @@ + if base != image.mode and image.mode != "1": + image = image.convert(base) + +- self.show_image(image, **options) ++ return self.show_image(image, **options) + + # hook methods |