1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

Replaced __unicode__ with __str__ for models

This commit is contained in:
Real-Gecko 2020-06-15 12:57:17 +06:00
parent cfd739778c
commit 9a75ceb0e5
5 changed files with 14 additions and 12 deletions

View file

@ -1,6 +1,7 @@
from django.db.models import Model, CharField, IntegerField
from django.utils.translation import ugettext_lazy as _
class Compute(Model):
name = CharField(_('name'), max_length=64, unique=True)
hostname = CharField(_('hostname'), max_length=64)
@ -9,5 +10,5 @@ class Compute(Model):
details = CharField(_('details'), max_length=64, null=True, blank=True)
type = IntegerField()
def __unicode__(self):
def __str__(self):
return self.hostname