aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/views.py')
-rw-r--r--accounts/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/accounts/views.py b/accounts/views.py
index ecaab4a..4a0be18 100644
--- a/accounts/views.py
+++ b/accounts/views.py
@@ -549,7 +549,7 @@ def personal_wrapper(request, errors):
# if multiple files concatenate pictures
im = Image.new("RGB", (0, 0), (255, 255, 255))
for f in files:
- if f.name.endswith(".pdf"):
+ if f.name.endswith(".pdf") or f.name.endswith(".PDF"):
images = convert_from_bytes(f.read())
for i in images:
dst = Image.new('RGB', (max(im.width, i.width), im.height + i.height), (255, 255, 255))
@@ -588,7 +588,7 @@ def personal_wrapper(request, errors):
# if multiple files concatenate pictures
im = Image.new("RGB", (0, 0), (255, 255, 255))
for f in files:
- if f.name.endswith(".pdf"):
+ if f.name.endswith(".pdf") or f.name.endswith(".PDF"):
images = convert_from_bytes(f.read())
for i in images:
dst = Image.new('RGB', (max(im.width, i.width), im.height + i.height), (255, 255, 255))