Advertisement
Guest User

Untitled

a guest
Feb 4th, 2011
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.47 KB | None | 0 0
  1. >>> from mcif.models.generic_import import GenericImport
  2. >>> from mcif.models.account_import import AccountImport
  3. >>> gi = models.ForeignKey('account_import.GenericImport')
  4. Traceback (most recent call last):
  5.   File "<console>", line 1, in <module>
  6. NameError: name 'models' is not defined
  7. >>> gi = mcif.models.ForeignKey('account_import.GenericImport')
  8. Traceback (most recent call last):
  9.   File "<console>", line 1, in <module>
  10. NameError: name 'mcif' is not defined
  11. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement