Fix label removal
This commit is contained in:
parent
e7aa31c6a4
commit
98313721b9
|
@ -85,7 +85,7 @@ class Label(models.Model):
|
||||||
created = models.DateTimeField(auto_now_add=True, blank=True)
|
created = models.DateTimeField(auto_now_add=True, blank=True)
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.id
|
return '{}'.format(self.id)
|
||||||
|
|
||||||
def print(self):
|
def print(self):
|
||||||
resp = requests.post(
|
resp = requests.post(
|
||||||
|
|
Loading…
Reference in New Issue