From 69e1660d6c58fff54b3f62461936f9115889841e Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Fri, 8 Jan 2016 15:05:54 +0100 Subject: [PATCH] PEP8 --- openlp/core/utils/db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openlp/core/utils/db.py b/openlp/core/utils/db.py index 3009dad91..1e18167ab 100644 --- a/openlp/core/utils/db.py +++ b/openlp/core/utils/db.py @@ -33,6 +33,7 @@ log = logging.getLogger(__name__) def drop_column(op, tablename, columnname): drop_columns(op, tablename, [columnname]) + def drop_columns(op, tablename, columns): """ Column dropping functionality for SQLite, as there is no DROP COLUMN support in SQLite