Anthony N

Results 5 issues of Anthony N

``` pi@raspberrypi:~/OpenDV/ircDDBGateway $ ./configure --without-gui checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk......

Forgive the lack of a better name for this issue. A query in the example below should correctly transform. ``` >>> Lead.objects.filter(organization__in=['orga_ly5LOucvyHVQEZsoIXIcPzR26It3NOEuwE0GfG7ixmt', 'orga_po2P8yCOprDXxgT0BLXnZcLPR7fzasLz79oIp8P3M1T']).filter(organization__exact='orga_po2P8yCOprDXxgT0BLXnZcLPR7fzasLz79oIp8P3M1T') Traceback (most recent call last): File "",...

``` python class FooResource(Resource): form = FooForm document = FooDocument class BarResource(Resource): document = BarDocument related_resources = { 'foos': FooResource } ``` In the above scenario, submitting a BarDocument with...

bug

``` python class MyResource(Resource): rename_fields = { 'test': 'test_id' } ``` ``` {u'field-errors': {u'test': [u'Not a valid choice']}} ```

enhancement