From bdd828ddb4cf82da9de7946d44bac09f0944c841 Mon Sep 17 00:00:00 2001 From: "Christian T. Jacobs" Date: Fri, 7 Jul 2017 12:21:22 +0100 Subject: [PATCH] Full stop in a comment line. --- pyqso/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyqso/log.py b/pyqso/log.py index 2ca4374..712b368 100644 --- a/pyqso/log.py +++ b/pyqso/log.py @@ -38,7 +38,7 @@ class Log(Gtk.ListStore): # The ListStore constructor needs to know the data types of the columns. # The index is always an integer. We will assume the fields are strings. data_types = [int] + [str]*len(AVAILABLE_FIELD_NAMES_ORDERED) - # Call the constructor of the super class (Gtk.ListStore) + # Call the constructor of the super class (Gtk.ListStore). Gtk.ListStore.__init__(self, *data_types) self.connection = connection