Skip to content

Instantly share code, notes, and snippets.

@relekang
Created May 15, 2013 11:19
Show Gist options
  • Save relekang/5583288 to your computer and use it in GitHub Desktop.
Save relekang/5583288 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
import django
if django.VERSION >= (1, 5):
from django.contrib.auth import get_user_model
User = get_user_model()
else:
from django.contrib.auth.models import User
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment