Fix import of version

If the import fails it wipes out the global pylorax import.
This commit is contained in:
Brian C. Lane 2013-04-03 16:28:22 -07:00
parent 52070f045c
commit 12bad32223
1 changed files with 2 additions and 3 deletions

View File

@ -78,11 +78,10 @@ def setup_logging(opts):
def main(args):
# get lorax version
try:
import pylorax.version
from pylorax import version
vernum = version.num
except ImportError:
vernum = "devel"
else:
vernum = pylorax.version.num
version = "{0}-{1}".format(os.path.basename(args[0]), vernum)
usage = "%prog -p PRODUCT -v VERSION -r RELEASE -s REPOSITORY OUTPUTDIR"