diff options
author | Britney Fransen <brfransen@gmail.com> | 2014-12-25 01:54:09 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2014-12-25 01:54:09 (GMT) |
commit | a76d4e38408e2d24de5c6bfe213833db1676a056 (patch) | |
tree | a72e95d4a74aaf7b414b4857fbc61ad852b3eef8 /build_tools | |
parent | 3f1b05fe6c45807a18f97df952fbabdf830da1de (diff) | |
download | linhes_dev-a76d4e38408e2d24de5c6bfe213833db1676a056.zip |
chk_arch_pkg.py: fix aur version check
Diffstat (limited to 'build_tools')
-rwxr-xr-x | build_tools/bin/chk_arch_pkg.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build_tools/bin/chk_arch_pkg.py b/build_tools/bin/chk_arch_pkg.py index e995fff..eeb30ee 100755 --- a/build_tools/bin/chk_arch_pkg.py +++ b/build_tools/bin/chk_arch_pkg.py @@ -39,6 +39,7 @@ def getArchVer(): try: if repo == "aur": archVerList = re.findall('<h2>Package Details: .*? (.*?)</h2>', website_text) + archVer = archVerList[0] else: if "- Split Package Details</title>" in website_text: print "This is a split package" |