Remove python 2.6-incompatible format expression.
This commit is contained in:
parent
889485181e
commit
6f8a4318c5
@ -27,7 +27,8 @@ class Vim(Package):
|
|||||||
|
|
||||||
feature_sets = ('huge', 'big', 'normal', 'small', 'tiny')
|
feature_sets = ('huge', 'big', 'normal', 'small', 'tiny')
|
||||||
for fs in feature_sets:
|
for fs in feature_sets:
|
||||||
variant(fs, default=False, description="Use '{}' feature set".format(fs))
|
print fs
|
||||||
|
variant(fs, default=False, description="Use '%s' feature set" % fs)
|
||||||
|
|
||||||
variant('python', default=False, description="build with Python")
|
variant('python', default=False, description="build with Python")
|
||||||
depends_on('python', when='+python')
|
depends_on('python', when='+python')
|
||||||
|
Loading…
Reference in New Issue
Block a user