Fix reference to self.versions in neovim package (#6639)

This commit is contained in:
Adam J. Stewart 2017-12-10 14:43:49 -06:00 committed by Massimiliano Culpo
parent 95a384f051
commit f41a263a28

View File

@ -49,7 +49,7 @@ class Neovim(CMakePackage):
def cmake_args(self):
args = []
if version >= Version('0.2.1'):
if self.version >= Version('0.2.1'):
args = ['-DPREFER_LUA=ON']
return args