diff --git a/scipost/forms.py b/scipost/forms.py
index 5e3b77bc843c86cdfb3c5a41ff755a607d9fd8a9..d2e7a9008d304c3e429798e611f9d4fdc46aec29 100644
--- a/scipost/forms.py
+++ b/scipost/forms.py
@@ -184,7 +184,8 @@ class RemarkForm(forms.Form):
     def __init__(self, *args, **kwargs):
         super(RemarkForm, self).__init__(*args, **kwargs)
         self.fields['remark'].widget.attrs.update(
-            {'rows': 3, 'cols': 40, 'placeholder': 'Enter your remarks here. You can use LaTeX in $...$ or \[ \].'})
+            {'rows': 3, 'cols': 40,
+             'placeholder': 'Enter your remarks here. You can use LaTeX in $...$ or \[ \].'})
 
 
 class SearchForm(forms.Form):
diff --git a/scipost/models.py b/scipost/models.py
index 185d0da7a0897fc5d3754c9864460084bb482373..9025eddd870068cfda10f7436ebb377f7a23b578 100644
--- a/scipost/models.py
+++ b/scipost/models.py
@@ -358,8 +358,7 @@ class Remark(models.Model):
     remark = models.TextField()
 
     def __str__(self):
-        return (title_dict[self.contributor.title] + ' '
-                + self.contributor.user.first_name + ' '
+        return (self.contributor.user.first_name + ' '
                 + self.contributor.user.last_name + ' on '
                 + self.date.strftime("%Y-%m-%d"))