django-social-widgets icon indicating copy to clipboard operation
django-social-widgets copied to clipboard

assignment_tag deprecated in Django 1.9

Open chrisroker0 opened this issue 5 years ago • 0 comments

@register.assignment_tag causes error on runserver

Changed :

def social_get_facebook_locale(locale):
    """
     Normalize the locale string and split the value needed for the api url
    """
    if locale is None:
        return 'en_US'

    return normalize(locale).split('.')[0]

To:

@register.simple_tag
def social_get_facebook_locale(locale):
    """
     Normalize the locale string and split the value needed for the api url
    """
    if locale is None:
        return 'en_US'

    return normalize(locale).split('.')[0]

chrisroker0 avatar Apr 07 '19 19:04 chrisroker0