Changeset b83db50


Ignore:
Timestamp:
Nov 12, 2011, 3:46:00 AM (14 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, space-access, stable, stage, test-hooks
Children:
73f0faf
Parents:
b63d6b2
git-author:
Alex Dehnert <adehnert@…> (11/12/11 03:43:41)
git-committer:
Alex Dehnert <adehnert@…> (11/12/11 03:46:00)
Message:

Apparently get_field_dict() doesn't exist now?

Not sure if this is an intentional API change, or if I wasn't supposed to
be using it before. Both the deprecated and current low-level API pages
say field_dict instead. *shrug*

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asadb/groups/diffs.py

    rb04e142 rb83db50  
    172172                before, before.pk,
    173173                after, after.pk,
    174                 after.type, after.get_field_dict(),
     174                after.type, after.field_dict,
    175175            )
    176             before_fields = before.get_field_dict()
    177             after_fields = after.get_field_dict()
     176            before_fields = before.field_dict
     177            after_fields = after.field_dict
    178178            for callback in callbacks:
    179179                callback.handle_group(before, after, before_fields, after_fields)
Note: See TracChangeset for help on using the changeset viewer.