diff --git a/src/postorius/management/commands/mmclient.py b/src/postorius/management/commands/mmclient.py
index 5e7c685..69b24ac 100644
--- a/src/postorius/management/commands/mmclient.py
+++ b/src/postorius/management/commands/mmclient.py
@@ -30,7 +30,7 @@
     foo.members
     [<Member "les@primus.org">]
 
-A complete list of commands can be found in the mailman.client documentation."""
+A complete list of commands can be found in the mailmanclient documentation."""
 
     def handle(self, *args, **options):
         # choose an interpreter
diff --git a/tox.ini b/tox.ini
index 37cfdee..d555df9 100644
--- a/tox.ini
+++ b/tox.ini
@@ -43,8 +43,8 @@
 setenv =
     PYTHONPATH = {toxinidir}
 commands =
-    # Install mailman.client from local repo instead of from pypi
-    pip install -e ../mailman.client
+    # Install mailmanclient from local repo instead of from pypi
+    pip install -e ../mailmanclient
     django-admin.py test --settings=testing.test_settings {posargs:postorius}
 
 [testenv:dev-record]
@@ -57,8 +57,8 @@
     PYTHONPATH = {toxinidir}
     POSTORIUS_VCR_RECORD_MODE = all
 commands =
-    # Install mailman.client from local repo instead of from pypi
-    pip install -e ../mailman.client
+    # Install mailmanclient from local repo instead of from pypi
+    pip install -e ../mailmanclient
     django-admin.py test --settings=testing.test_settings {posargs:postorius}
 
 [testenv:pep8]