summaryrefslogtreecommitdiff
path: root/src/mailman/app/docs
diff options
context:
space:
mode:
authorBarry Warsaw2014-12-15 21:49:38 -0500
committerBarry Warsaw2014-12-15 21:49:38 -0500
commita201f7ed4119cecd099a60ab220a3e360320865e (patch)
treee23a771a1bfeee4696a80ed01ef8dda34ab895fd /src/mailman/app/docs
parent7386356396f5e10cb25660b57a17896ae2f0dbf2 (diff)
downloadmailman-a201f7ed4119cecd099a60ab220a3e360320865e.tar.gz
mailman-a201f7ed4119cecd099a60ab220a3e360320865e.tar.zst
mailman-a201f7ed4119cecd099a60ab220a3e360320865e.zip
app/docs and app.tests all pass now.
Diffstat (limited to 'src/mailman/app/docs')
-rw-r--r--src/mailman/app/docs/hooks.rst1
-rw-r--r--src/mailman/app/docs/subscriptions.rst7
2 files changed, 1 insertions, 7 deletions
diff --git a/src/mailman/app/docs/hooks.rst b/src/mailman/app/docs/hooks.rst
index 8b616f1b2..ba9bb249e 100644
--- a/src/mailman/app/docs/hooks.rst
+++ b/src/mailman/app/docs/hooks.rst
@@ -61,6 +61,7 @@ script that will produce no output to force the hooks to run.
... proc = subprocess.Popen(
... [exe, 'lists', '--domain', 'ignore', '-q'],
... cwd=ConfigLayer.root_directory, env=env,
+ ... universal_newlines=True,
... stdout=subprocess.PIPE, stderr=subprocess.PIPE)
... stdout, stderr = proc.communicate()
... assert proc.returncode == 0, stderr
diff --git a/src/mailman/app/docs/subscriptions.rst b/src/mailman/app/docs/subscriptions.rst
index 8c3d8b28d..eaccdc3cc 100644
--- a/src/mailman/app/docs/subscriptions.rst
+++ b/src/mailman/app/docs/subscriptions.rst
@@ -67,13 +67,6 @@ New members can also be added by providing an existing user id instead of an
email address. However, the user must have a preferred email address.
::
- >>> service.join('test.example.com', bart.user.user_id,
- ... role=MemberRole.owner)
- Traceback (most recent call last):
- ...
- MissingPreferredAddressError: User must have a preferred address:
- <User "Bart Person" (2) at ...>
-
>>> from mailman.utilities.datetime import now
>>> address = list(bart.user.addresses)[0]
>>> address.verified_on = now()