1
0
mirror of https://github.com/django/django.git synced 2025-04-04 13:36:42 +00:00

Fixed #194 -- thanks, steadicat!

git-svn-id: http://code.djangoproject.com/svn/django/trunk@310 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2005-07-25 22:16:30 +00:00
parent 12ffae6df4
commit a6ed088c62

View File

@ -9,7 +9,7 @@ import ImageFile
def get_image_dimensions(path):
"""Returns the (width, height) of an image at a given path."""
p = ImageFile.Parser()
fp = open(path)
fp = open(path, 'rb')
while 1:
data = fp.read(1024)
if not data: