~rick-rickspencer3/+junk/jumper

« back to all changes in this revision

Viewing changes to jumper/AboutJumperDialog.py

  • Committer: Rick Spencer
  • Date: 2011-09-07 09:19:38 UTC
  • Revision ID: rick.spencer@canonical.com-20110907091938-cxxescturvof9xvv
Initial project creation with Quickly!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
 
2
### BEGIN LICENSE
 
3
# This file is in the public domain
 
4
### END LICENSE
 
5
 
 
6
import gettext
 
7
from gettext import gettext as _
 
8
gettext.textdomain('jumper')
 
9
 
 
10
import logging
 
11
logger = logging.getLogger('jumper')
 
12
 
 
13
from jumper_lib.AboutDialog import AboutDialog
 
14
 
 
15
# See jumper_lib.AboutDialog.py for more details about how this class works.
 
16
class AboutJumperDialog(AboutDialog):
 
17
    __gtype_name__ = "AboutJumperDialog"
 
18
    
 
19
    def finish_initializing(self, builder): # pylint: disable=E1002
 
20
        """Set up the about dialog"""
 
21
        super(AboutJumperDialog, self).finish_initializing(builder)
 
22
 
 
23
        # Code for other initialization actions should be added here.
 
24