Created
November 28, 2014 16:22
-
-
Save xordoquy/4dfd1291ebd3a5527fc1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# BAD: Incorrect code | |
class MyManager(models.Manager): | |
# ... | |
pass | |
# Sets the attribute on an instance of MyManager. Django will | |
# ignore this setting. | |
mgr = MyManager() | |
mgr.use_for_related_fields = True | |
class MyModel(models.Model): | |
# ... | |
objects = mgr | |
# End of incorrect code. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment