From 97a587e5e522f4f94b97eb6e54c7a0a13ec34963 Mon Sep 17 00:00:00 2001 From: zuber Date: Thu, 5 Nov 2009 14:02:06 +0100 Subject: [PATCH] Dobra nazwa dla argumentu (required -> blank). --- apps/api/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/models.py b/apps/api/models.py index 8681990e..cd9a3958 100644 --- a/apps/api/models.py +++ b/apps/api/models.py @@ -41,7 +41,7 @@ class PullRequest(models.Model): # revision to be merged into the main branch source_revision = models.CharField(max_length=40, unique=True) - target_revision = models.CharField(max_length=40, required=False) + target_revision = models.CharField(max_length=40, blank=True) # current status status = models.CharField(max_length=1, choices=REQUEST_STATUSES.items()) -- 2.20.1