From: Chris Lamb Date: Fri, 30 Oct 2009 14:08:27 +0000 (+0000) Subject: Use 4 spaces for indentation. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95b7c12bcfbed05d09ce3e0b8fb2c8d8a2c10c96;p=dak Use 4 spaces for indentation. Signed-off-by: Chris Lamb --- diff --git a/daklib/dbconn.py b/daklib/dbconn.py index 22285c93..5f24aa73 100755 --- a/daklib/dbconn.py +++ b/daklib/dbconn.py @@ -66,10 +66,10 @@ class DebVersion(sqltypes.Text): sa_major_version = sqlalchemy.__version__[0:3] if sa_major_version == "0.5": - from sqlalchemy.databases import postgres - postgres.ischema_names['debversion'] = DebVersion + from sqlalchemy.databases import postgres + postgres.ischema_names['debversion'] = DebVersion else: - raise Exception("dak isn't ported to SQLA versions != 0.5 yet. See daklib/dbconn.py") + raise Exception("dak isn't ported to SQLA versions != 0.5 yet. See daklib/dbconn.py") ################################################################################