[damned-lies] Change one more x to ×



commit 655c56a4a4d8e511d95f3a6e6a4f2d91e4ffb8d6
Author: Piotr Drąg <piotrdrag gmail com>
Date:   Fri Nov 18 04:10:26 2016 +0100

    Change one more x to ×

 people/forms.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/people/forms.py b/people/forms.py
index e140c8e..e040550 100644
--- a/people/forms.py
+++ b/people/forms.py
@@ -100,7 +100,7 @@ class DetailForm(forms.ModelForm):
             return
         size = get_image_size(url)
         if size[0]>100 or size[1]>100:
-            raise forms.ValidationError(_(u"Image too high or too wide (%(width)dx%(height)d, maximum is 
100×100 pixels)") % {
+            raise forms.ValidationError(_(u"Image too high or too wide (%(width)d×%(height)d, maximum is 
100×100 pixels)") % {
                 'width': size[0], 'height': size[1]})
         return url
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]