hub: Fix permissions in readPackageList()
The recent changes to kerberos principal handling broke proper reporting of package ownership, due to an obvious typo. Signed-off-by: Jim Foraker <foraker1@llnl.gov>
This commit is contained in:
parent
a24af06343
commit
b1aaf531aa
1 changed files with 1 additions and 1 deletions
|
|
@ -1114,7 +1114,7 @@ def readPackageList(tagID=None, userID=None, pkgID=None, event=None, inherit=Fal
|
|||
JOIN package ON package.id = tag_packages.package_id
|
||||
JOIN tag_package_owners ON
|
||||
tag_packages.tag_id = tag_package_owners.tag_id AND
|
||||
tag_packages.package_id = tag_packages.package_id
|
||||
tag_packages.package_id = tag_package_owners.package_id
|
||||
JOIN users ON users.id = tag_package_owners.owner
|
||||
WHERE %(cond1)s AND %(cond2)s"""
|
||||
if tagID != None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue