← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~cjwatson/launchpad:fix-archive-auth-inactive-person into launchpad:master

 

Colin Watson has proposed merging ~cjwatson/launchpad:fix-archive-auth-inactive-person into launchpad:master.

Commit message:
Fix checking of named archive auth tokens

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/401858

Broken by https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/401598.
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:fix-archive-auth-inactive-person into launchpad:master.
diff --git a/lib/lp/soyuz/model/archiveauthtoken.py b/lib/lp/soyuz/model/archiveauthtoken.py
index 8d4c974..90c753c 100644
--- a/lib/lp/soyuz/model/archiveauthtoken.py
+++ b/lib/lp/soyuz/model/archiveauthtoken.py
@@ -102,7 +102,7 @@ class ArchiveAuthTokenSet:
         tables = [
             ArchiveAuthToken,
             LeftJoin(Person, ArchiveAuthToken.person == Person.id),
-            Join(Account, Person.account == Account.id),
+            LeftJoin(Account, Person.account == Account.id),
             ]
         clauses = [
             ArchiveAuthToken.archive == archive,