From 3120efd1928faf0f54ffa9c87674a8e5832b7ce4 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 21 Jan 2019 10:51:12 +0100 Subject: [PATCH] Remove trailing windows newline --- pgweb/core/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgweb/core/models.py b/pgweb/core/models.py index d8ce7027..e03d7458 100644 --- a/pgweb/core/models.py +++ b/pgweb/core/models.py @@ -85,7 +85,7 @@ class Version(models.Model): class Country(models.Model): name = models.CharField(max_length=100, null=False, blank=False) - tld = models.CharField(max_length=3, null=False, blank=False) + tld = models.CharField(max_length=3, null=False, blank=False) class Meta: db_table = 'countries' -- 2.39.5