diff --git a/SciPost_v1/settings.py b/SciPost_v1/settings.py
index e999aaf861ad93644bac8aac6fa39b8d4a61a69c..93080c61d9e7012a312a59d231d697b70c22c400 100644
--- a/SciPost_v1/settings.py
+++ b/SciPost_v1/settings.py
@@ -107,6 +107,7 @@ SHELL_PLUS_POST_IMPORTS = (
     ('theses.factories', ('ThesisLinkFactory')),
     ('comments.factories', ('CommentFactory')),
     ('submissions.factories', ('SubmissionFactory', 'EICassignedSubmissionFactory')),
+    ('commentaries.factories', ('EmptyCommentaryFactory', 'VettedCommentaryFactory', 'UnvettedCommentaryFactory')),
 )
 
 MATHJAX_ENABLED = True
diff --git a/commentaries/factories.py b/commentaries/factories.py
index 18e72a7b59715315a717f78316e9011ea1f34477..82319e0cd3c3aa39d06b7c1c2338b4d45b6ee67c 100644
--- a/commentaries/factories.py
+++ b/commentaries/factories.py
@@ -34,5 +34,5 @@ class VettedCommentaryFactory(CommentaryFactory):
     vetted = True
 
 
-class UnVettedCommentaryFactory(CommentaryFactory):
+class UnvettedCommentaryFactory(CommentaryFactory):
     vetted = False
diff --git a/commentaries/templates/commentaries/commentaries.html b/commentaries/templates/commentaries/commentaries.html
index 8414ca91ab9e0cbd56269e503f245f572b909d4c..d555bd005778f7f47c1417d24c707efb0efbb062 100644
--- a/commentaries/templates/commentaries/commentaries.html
+++ b/commentaries/templates/commentaries/commentaries.html
@@ -11,7 +11,6 @@
 {% block content %}
 
 
-{# <section>#}
 <div class="row">
     <div class="col-md-4">
         <div class="panel page-header-panel">
diff --git a/commentaries/test_forms.py b/commentaries/test_forms.py
index 8a81d2abb6dd2c55da24c687e78ccde109544c71..cec31d3071f2944cc61a8c0cebb785adb186f27f 100644
--- a/commentaries/test_forms.py
+++ b/commentaries/test_forms.py
@@ -3,7 +3,7 @@ from django.test import TestCase
 from common.helpers import model_form_data
 from scipost.factories import UserFactory
 
-from .factories import VettedCommentaryFactory, UnVettedCommentaryFactory
+from .factories import VettedCommentaryFactory, UnvettedCommentaryFactory
 from .forms import RequestCommentaryForm, VetCommentaryForm
 from .models import Commentary
 
@@ -12,7 +12,7 @@ class TestVetCommentaryForm(TestCase):
     fixtures = ['permissions', 'groups']
 
     def setUp(self):
-        self.commentary = UnVettedCommentaryFactory.create()
+        self.commentary = UnvettedCommentaryFactory.create()
         self.user = UserFactory()
         self.form_data = {
             'action_option': VetCommentaryForm.ACTION_ACCEPT,
diff --git a/commentaries/test_views.py b/commentaries/test_views.py
index d724770ab2f0f57b8229618661ef257897fcfdd1..606bbfc37dbda31571f533f4d82586aae14f9226 100644
--- a/commentaries/test_views.py
+++ b/commentaries/test_views.py
@@ -4,7 +4,7 @@ from django.test import TestCase
 
 from scipost.factories import ContributorFactory
 
-from .factories import UnVettedCommentaryFactory, VettedCommentaryFactory
+from .factories import UnvettedCommentaryFactory, VettedCommentaryFactory
 from .forms import CommentarySearchForm
 from .models import Commentary
 
@@ -83,7 +83,7 @@ class VetCommentaryRequestsTest(TestCase):
         self.assertEquals(response.context['commentary_to_vet'], None)
 
         # Unvetted Commentaries do exist!
-        UnVettedCommentaryFactory()
+        UnvettedCommentaryFactory()
         response = self.client.get(self.view_url)
         self.assertTrue(type(response.context['commentary_to_vet']) is Commentary)
 
diff --git a/theses/test_views.py b/theses/test_views.py
index 4cb20b10173e116d224912a655263381aa204e85..8f6d5f202018e73ecbec408158447ede95c0cc6b 100644
--- a/theses/test_views.py
+++ b/theses/test_views.py
@@ -31,7 +31,6 @@ class TestThesisDetail(TestCase):
         self.assertEqual(response.status_code, 200)
 
 
-
 class TestRequestThesisLink(TestCase):
     fixtures = ['groups', 'permissions']