回答編集履歴
2
修正
test
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
# tagがNoneだったら、
|
24
24
|
|
25
|
-
if self.tags is None:
|
25
|
+
if self.tags.slugs() is None:
|
26
26
|
|
27
27
|
# Noneのかわりに10文字のランダムアルファベット
|
28
28
|
|
1
修正
test
CHANGED
@@ -26,7 +26,7 @@
|
|
26
26
|
|
27
27
|
# Noneのかわりに10文字のランダムアルファベット
|
28
28
|
|
29
|
-
self.tags = ''.join([random.choice(data) for i in range(10)])
|
29
|
+
self.tags.slugs() = ''.join([random.choice(data) for i in range(10)])
|
30
30
|
|
31
31
|
super().save(*args, **kwargs)
|
32
32
|
|