Giter VIP home page Giter VIP logo

Comments (3)

Reston avatar Reston commented on July 21, 2024

I have the same issue and i don't know how to solve it

from django-bitly.

ryanflores79 avatar ryanflores79 commented on July 21, 2024

Try creating a file like myproject/mybittle.py containing this code, it worked for me. It doesn't address the cause, but it does bandaid the issue.

from django_bitly.models import Bittle, BittleManager
from django.core.exceptions import MultipleObjectsReturned

class MyBittleManager(BittleManager):

    def get_for_instance(self, obj):
        '''
        Overriding this method to handle the random MultipleObjectsReturned Errors
        '''
        app_label = obj._meta.app_label
        model = obj._meta.module_name
        try:
            btl = self.get(content_type__app_label=app_label, content_type__model=model, object_id=obj.pk)
        except MultipleObjectsReturned:
            qs = self.filter(content_type__app_label=app_label, content_type__model=model, object_id=obj.pk)
            qs[1].delete()
            btl = qs[0]
        return btl


class MyBittle(Bittle):
    objects = MyBittleManager()

    class Meta:
        proxy = True
        ordering = ("-date_created",)
        db_table = 'django_bitly_bittle'

Then you can do something like:

from myproject.mybittle import MyBittle
bittle = MyBittle.objects.bitlify(some_object)

from django-bitly.

fcurella avatar fcurella commented on July 21, 2024

fix in #22

from django-bitly.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.