Update imageutils.py

missing comma
This commit is contained in:
Leonel Câmara
2016-03-25 12:45:33 +00:00
parent 32650f0cbf
commit 778cc3902b
+1 -1
View File
@@ -27,7 +27,7 @@ from gluon import current
class RESIZE(object):
def __init__(self, nx=160, ny=80, quality=100, padding = False
def __init__(self, nx=160, ny=80, quality=100, padding = False,
error_message=' image resize'):
(self.nx, self.ny, self.quality, self.error_message, self.padding) = (
nx, ny, quality, error_message, padding)