`objects.get(…)` does not work as expected
问题 I'm trying to get an object from my neo4j database using neo4django >>> # There is a single Person object in the database, so I get a value >>> slug=Person.objects.get().name_slug >>> print(slug) doe-john >>> # ok, it's there >>> p=Person.objects.get(name_slug=slug) Traceback (most recent call last): File "<console>", line 1, in <module> File "/[...]/src/neo4django/neo4django/db/models/manager.py", line 37, in get return self.get_query_set().get(*args, **kwargs) File "/[...]/lib/python2.7