From: Torsten Werner <twerner@debian.org>
Date: Sun, 20 Mar 2011 23:01:40 +0000 (+0100)
Subject: Fix a comment in dbconn.py.
X-Git-Tag: debian-r/squeeze~280^2~8
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=cba3fc3598217ab74fc075e1bec47b82ef6b8bab;p=dak.git

Fix a comment in dbconn.py.

Signed-off-by: Torsten Werner <twerner@debian.org>
---

diff --git a/daklib/dbconn.py b/daklib/dbconn.py
index 9b757d13..fb2cc3b0 100755
--- a/daklib/dbconn.py
+++ b/daklib/dbconn.py
@@ -3004,8 +3004,9 @@ class DBConn(object):
             table = Table(table_name, self.db_meta, autoload=True)
             setattr(self, 'tbl_%s' % table_name, table)
 
-        # bin_contents needs special attention until update #41 has been
-        # applied
+        # bin_contents needs special attention until the SERIAL type is
+        # correctly detected and the workaround has been removed; see comment
+        # above
         self.tbl_bin_contents = Table('bin_contents', self.db_meta, \
             Column('file', Text, primary_key = True),
             Column('binary_id', Integer, ForeignKey('binaries.id'), \