Avoid using single-letter variable

This commit is contained in:
Erik Johnson 2015-07-21 23:29:22 -05:00
parent 69ef81caba
commit a19fa2296a

View File

@ -1996,8 +1996,8 @@ def version_cmp(pkg1, pkg2):
elif distutils.version.LooseVersion(pkg1) > \
distutils.version.LooseVersion(pkg2):
return 1
except Exception as e:
log.exception(e)
except Exception as exc:
log.exception(exc)
return None