Merge lp:~cjwatson/launchpad/close-account-git-subscription into lp:launchpad

Proposed by Colin Watson
Status: Merged
Merged at revision: 18639
Proposed branch: lp:~cjwatson/launchpad/close-account-git-subscription
Merge into: lp:launchpad
Diff against target: 28 lines (+6/-5)
1 file modified
scripts/close-account.py (+6/-5)
To merge this branch: bzr merge lp:~cjwatson/launchpad/close-account-git-subscription
Reviewer Review Type Date Requested Status
William Grant code Approve
Review via email: mp+345237@code.launchpad.net

Commit message

Remove Git subscriptions in close-account.

To post a comment you must log in.
Revision history for this message
William Grant (wgrant) wrote :

There are probably much worse problems with that script, but indeed.

review: Approve (code)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'scripts/close-account.py'
--- scripts/close-account.py 2011-12-30 06:47:17 +0000
+++ scripts/close-account.py 2018-05-08 14:29:22 +0000
@@ -121,11 +121,11 @@
121121
122 # Remove rows from tables in simple cases in the given order122 # Remove rows from tables in simple cases in the given order
123 removals = [123 removals = [
124 # Trash their email addresses. Unsociable privacy nut jobs who request124 # Trash their email addresses. People who request complete account
125 # account removal would be pissed if they reregistered with their old125 # removal would be unhappy if they reregistered with their old email
126 # email address and this resurrected their deleted account, as the126 # address and this resurrected their deleted account, as the email
127 # email address is probably the piece of data we store that they where127 # address is probably the piece of data we store that they were most
128 # most concerned with being removed from our systems.128 # concerned with being removed from our systems.
129 ('EmailAddress', 'person'),129 ('EmailAddress', 'person'),
130130
131 # Trash their codes of conduct and GPG keys131 # Trash their codes of conduct and GPG keys
@@ -134,6 +134,7 @@
134134
135 # Subscriptions135 # Subscriptions
136 ('BranchSubscription', 'person'),136 ('BranchSubscription', 'person'),
137 ('GitSubscription', 'person'),
137 ('BugSubscription', 'person'),138 ('BugSubscription', 'person'),
138 ('QuestionSubscription', 'person'),139 ('QuestionSubscription', 'person'),
139 ('SpecificationSubscription', 'person'),140 ('SpecificationSubscription', 'person'),