https://github.com/boto/boto/pull/2094 https://bugzilla.redhat.com/show_bug.cgi?id=1064550f38
parent
31f78678c0
commit
4b2dc4e921
@ -0,0 +1,21 @@
|
||||
Index: boto/boto/roboto/param.py
|
||||
===================================================================
|
||||
--- boto.orig/boto/roboto/param.py
|
||||
+++ boto/boto/roboto/param.py
|
||||
@@ -67,7 +67,7 @@ class Converter(object):
|
||||
except:
|
||||
raise ValidationException(param, '')
|
||||
|
||||
-class Param(object):
|
||||
+class Param(Converter):
|
||||
|
||||
def __init__(self, name=None, ptype='string', optional=True,
|
||||
short_name=None, long_name=None, doc='',
|
||||
@@ -142,6 +142,6 @@ class Param(object):
|
||||
:param value: The value to convert. This should always
|
||||
be a string.
|
||||
"""
|
||||
- return super(Param, self).convert(value)
|
||||
+ return super(Param, self).convert(self, value)
|
||||
|
||||
|
Loading…
Reference in new issue