diff options
Diffstat (limited to 'archaeological_finds/wizards.py')
-rw-r--r-- | archaeological_finds/wizards.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_finds/wizards.py b/archaeological_finds/wizards.py index d7e3dbac0..dab4a76d4 100644 --- a/archaeological_finds/wizards.py +++ b/archaeological_finds/wizards.py @@ -180,8 +180,8 @@ class TreatmentFileAdministrativeActWizard( pk = self.session_get_value(form_key, "pk") try: return ( - (_(u"Treatment file"), - unicode(models.Operation.objects.get(pk=pk))), + (_(u"Treatment request"), + unicode(models.TreatmentFile.objects.get(pk=pk))), ) except models.TreatmentFile.DoesNotExist: return |