Fixing sample_data to avoid empty tags on certain issues

remotes/origin/logger
Alejandro Alonso 2015-10-29 08:51:28 +01:00
parent 3b082a1c9b
commit 6b7d8e5280
1 changed files with 1 additions and 2 deletions

View File

@ -285,7 +285,7 @@ class Command(BaseCommand):
project=project)),
type=self.sd.db_object_from_queryset(IssueType.objects.filter(
project=project)),
tags=self.sd.words(0, 10).split(" "))
tags=self.sd.words(1, 10).split(" "))
bug.save()
@ -494,4 +494,3 @@ class Command(BaseCommand):
for i in range(self.sd.int(*NUM_WATCHERS)):
user = self.sd.db_object_from_queryset(User.objects.all())
obj.add_watcher(user)