~stewart/mythremote/quickly_trunk

« back to all changes in this revision

Viewing changes to mythremote/AboutMythremoteDialog.py

  • Committer: Stewart Smith
  • Date: 2012-02-05 04:40:51 UTC
  • Revision ID: stewart@flamingspork.com-20120205044051-b86m7edpcxosnziq
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('mythremote')
 
9
 
 
10
import logging
 
11
logger = logging.getLogger('mythremote')
 
12
 
 
13
from mythremote_lib.AboutDialog import AboutDialog
 
14
 
 
15
# See mythremote_lib.AboutDialog.py for more details about how this class works.
 
16
class AboutMythremoteDialog(AboutDialog):
 
17
    __gtype_name__ = "AboutMythremoteDialog"
 
18
    
 
19
    def finish_initializing(self, builder): # pylint: disable=E1002
 
20
        """Set up the about dialog"""
 
21
        super(AboutMythremoteDialog, self).finish_initializing(builder)
 
22
 
 
23
        # Code for other initialization actions should be added here.
 
24