-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-im/jabber-pyicq: switch from py-imaging to py-pillow
- USES python With hat: python Approved by: portmgr (bdrewery, implicit)
- Loading branch information
1 parent
b380b86
commit df0e7ad
Showing
4 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- src/contact.py.orig 2014-10-06 16:48:44 UTC | ||
+++ src/contact.py | ||
@@ -13,7 +13,7 @@ | ||
import globals | ||
import base64 | ||
if not config.disableAvatars: | ||
- import Image | ||
+ from PIL import Image | ||
import StringIO | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- src/imgmanip.py.orig 2014-10-06 16:49:20 UTC | ||
+++ src/imgmanip.py | ||
@@ -5,7 +5,7 @@ | ||
|
||
if not config.disableAvatars: | ||
try: | ||
- import Image | ||
+ from PIL import Image | ||
import StringIO | ||
|
||
def convertToPNG(imageData): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- tools/infodump.py.orig 2014-10-06 16:48:04 UTC | ||
+++ tools/infodump.py | ||
@@ -41,7 +41,7 @@ | ||
print "Nevow Version: Unknown or Not Installed" | ||
|
||
try: | ||
- from Image import VERSION | ||
+ from PIL.Image import VERSION | ||
print "Python Imaging Library (PIL) Version: " + VERSION | ||
except: | ||
print "Python Imaging Library (PIL) Version: Unknown or Not Installed" |