From d6fbf12989e85b8cdbd0202653ef6a2709c16bf5 Mon Sep 17 00:00:00 2001 From: David Ripton Date: Wed, 26 Feb 2014 15:04:54 -0500 Subject: Eradicate trailing whitespace Remove all trailing spaces and tabs in every file in the project. People have editors configured to do this, which causes them to accidentally make little whitespace changes in unrelated commits, which makes those commits harder to review. Better to fix them all at once. Change-Id: I17d89f55f41d8599e0ab1a31f646cd161289703e --- migrate/changeset/databases/firebird.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'migrate/changeset/databases/firebird.py') diff --git a/migrate/changeset/databases/firebird.py b/migrate/changeset/databases/firebird.py index 226728b..bbb4acd 100644 --- a/migrate/changeset/databases/firebird.py +++ b/migrate/changeset/databases/firebird.py @@ -31,7 +31,7 @@ class FBColumnDropper(ansisql.ANSIColumnDropper): if column.name in [col.name for col in index.columns]: index.drop() # TODO: recreate index if it references more than this column - + for cons in column.table.constraints: if isinstance(cons,PrimaryKeyConstraint): # will be deleted only when the column its on -- cgit v1.2.1