diff --git a/journals/models.py b/journals/models.py
index 6858d5d598aefe03a53924e268b81df915afad02..95ffaac4bc4ad643d53d1c9f5d0e3b1929d5e44b 100644
--- a/journals/models.py
+++ b/journals/models.py
@@ -497,7 +497,7 @@ class Publication(models.Model):
         Returns a queryset of all Organizations which are associated to this Publication,
         through being in author affiliations, funders or generic funders.
         """
-        from partners.models import Organization
+        from organizations.models import Organization
         return Organization.objects.filter(
             models.Q(publicationauthorstable__publication=self) |
             models.Q(funder__grants__publications=self) |