pull/54/head
Christian T. Jacobs 2017-02-21 16:47:35 +00:00
rodzic 7b3f8d067b
commit f976d840e2
2 zmienionych plików z 3 dodań i 4 usunięć

Wyświetl plik

@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with PyQSO. If not, see <http://www.gnu.org/licenses/>.
from gi.repository import Gtk, GObject
from gi.repository import GObject
import logging
from datetime import datetime
from os.path import expanduser
@ -53,7 +53,7 @@ class GreyLine:
:arg builder: The Gtk builder.
"""
logging.debug("Setting up the grey line...")
self.parent = parent
self.builder = builder

Wyświetl plik

@ -17,7 +17,6 @@
# You should have received a copy of the GNU General Public License
# along with PyQSO. If not, see <http://www.gnu.org/licenses/>.
from gi.repository import Gtk
import logging
from pyqso.dx_cluster import *
@ -45,7 +44,7 @@ class Toolbox:
self.dx_cluster = DXCluster(self.parent, self.builder)
self.grey_line = GreyLine(self.parent, self.builder)
#self.awards = Awards(self.parent, self.builder)
self.tools.connect_after("switch-page", self._on_switch_page)
logging.debug("Toolbox ready!")