Skip to content

Commit dd38fb0

Browse files
authored
Corrected improper models.Manager reference
1 parent b3749f4 commit dd38fb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/common_issues.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ As a convention, you can define a custom manager to update these timestamps auto
299299
new_fields = tuple(fields) + ("updated_at",)
300300
super().bulk_update(objs, new_fields, *args, **kwargs)
301301
302-
class UpdatedAtFriendlyManager(models.manager.BaseManager.from_queryset(UpdatedAtFriendlyQuerySet)):
302+
class UpdatedAtFriendlyManager(models.Manager.from_queryset(UpdatedAtFriendlyQuerySet)):
303303
pass
304304
305305
class Poll(models.Model):

0 commit comments

Comments
 (0)