From 83f27b8e0ef0044e1dea0fb4fa5f6139b44822ea Mon Sep 17 00:00:00 2001 From: Dmitry Date: Wed, 14 Dec 2016 22:24:48 +0000 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=B4=D0=B0=D0=BB=D0=B8=D0=BB=20=D0=BF?= =?UTF-8?q?=D1=80=D0=B8=D0=BD=D1=82=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ip_pool/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ip_pool/models.py b/ip_pool/models.py index 9f2d26e..6bdc7a8 100644 --- a/ip_pool/models.py +++ b/ip_pool/models.py @@ -33,7 +33,6 @@ class IpPoolItemManager(models.Manager): sql_strs = map(lambda tip: r"(%d)" % tip, range(start_ip, end_ip + 1)) sql = r'INSERT INTO ip_pool_ippoolitem (ip) VALUES %s' % r",".join(sql_strs) - print sql cursor = connection.cursor() cursor.execute(sql)