Repair repr of future-features (wasn't updated to include the new
compiler-flag argument).
This commit is contained in:
parent
9881fc124e
commit
16c018d2d2
|
@ -87,8 +87,9 @@ class _Feature:
|
|||
return self.mandatory
|
||||
|
||||
def __repr__(self):
|
||||
return "_Feature(" + `self.getOptionalRelease()` + ", " + \
|
||||
`self.getMandatoryRelease()` + ")"
|
||||
return "_Feature" + repr((self.optional,
|
||||
self.mandatory,
|
||||
self.compiler_flag))
|
||||
|
||||
nested_scopes = _Feature((2, 1, 0, "beta", 1),
|
||||
(2, 2, 0, "alpha", 0),
|
||||
|
|
Loading…
Reference in New Issue