summaryrefslogtreecommitdiff
path: root/src/mailman/rest/docs
diff options
context:
space:
mode:
authorBarry Warsaw2010-08-23 21:58:44 -0400
committerBarry Warsaw2010-08-23 21:58:44 -0400
commitea5836d0922db7e8935ecf62ae1b1ecde7da7785 (patch)
tree527bdf301b999ed0736cae67a6ce9eee000c6950 /src/mailman/rest/docs
parent537a9b8682565ebfa79aad0ed3e4efb6b89aa3f4 (diff)
downloadmailman-ea5836d0922db7e8935ecf62ae1b1ecde7da7785.tar.gz
mailman-ea5836d0922db7e8935ecf62ae1b1ecde7da7785.tar.zst
mailman-ea5836d0922db7e8935ecf62ae1b1ecde7da7785.zip
Refactor, and add a missing import.
Diffstat (limited to 'src/mailman/rest/docs')
-rw-r--r--src/mailman/rest/docs/helpers.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/rest/docs/helpers.txt b/src/mailman/rest/docs/helpers.txt
index 23cd2f162..b2482b370 100644
--- a/src/mailman/rest/docs/helpers.txt
+++ b/src/mailman/rest/docs/helpers.txt
@@ -65,7 +65,7 @@ POST unpacking
Another helper unpacks POST request variables, validating and converting their
values.
- >>> from mailman.rest.helpers import Validator
+ >>> from mailman.rest.validator import Validator
>>> validator = Validator(one=int, two=unicode, three=bool)
>>> class FakeRequest: