enhance error message when version capture failed. Credits goes to Dabian Snovna

This commit is contained in:
Mathieu Virbel 2013-07-06 16:03:15 +02:00
parent 2fe8d97b4c
commit 2642497d3a

View file

@ -498,7 +498,8 @@ class Buildozer(object):
match = search(regex, data)
if not match:
raise Exception(
'Unable to found capture version in {0}'.format(fn))
'Unable to find capture version in {0}\n'
' (looking for `{1}`)'.format(fn, regex))
version = match.groups()[0]
self.debug('Captured version: {0}'.format(version))
return version