From c931fefb850557dff7c6b77cdde1620331f3a545 Mon Sep 17 00:00:00 2001 From: Alex Clark Date: Sun, 28 Nov 2010 15:26:48 -0500 Subject: [PATCH] Clean up --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 21104ec20..1b9ebd8eb 100644 --- a/setup.py +++ b/setup.py @@ -72,6 +72,7 @@ except ImportError: NAME = 'pillow' VERSION = '1.3' +PIL_VERSION = '1.1.7' TCL_ROOT = None JPEG_ROOT = None ZLIB_ROOT = None @@ -351,11 +352,9 @@ class pil_build_ext(build_ext): self.summary_report(feature, unsafe_zlib) def summary_report(self, feature, unsafe_zlib): - print "-" * 68 - print "Pillow (PIL fork)", VERSION, "SETUP SUMMARY" + print "pillow", VERSION, "( PIL fork based on", "PIL", PIL_VERSION, ")", "SETUP SUMMARY" print "-" * 68 - print "version ", VERSION v = string.split(sys.version, "[") print "platform ", sys.platform, string.strip(v[0]) for v in v[1:]: