У меня есть модель django с именем UserProfile.
Вот мой код:
user_profile = UserProfile.objects.filter(id = 1).first()
if user_profile:
user_profile_id = user_profile.id
user_details = 'user id: ' + unicode(user_profile_id)
Код работает нормально, но сегодня я получил исключение в строке 4 (последняя строка):
TypeError: coercing to Unicode: need string or buffer, NoneType found
Понятия не имею, что здесь могло пойти не так.