~dholbach/ubuntu-app-reviews/xkcd-browser

« back to all changes in this revision

Viewing changes to xkcd_browser/AboutXkcdBrowserDialog.py

  • Committer: brianrobles204 at gmail
  • Date: 2012-06-08 13:45:01 UTC
  • Revision ID: brianrobles204@gmail.com-20120608134501-d7mtub9mz12hy8gs
first version of the app

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('xkcd-browser')
 
9
 
 
10
import logging
 
11
logger = logging.getLogger('xkcd_browser')
 
12
 
 
13
from xkcd_browser_lib.AboutDialog import AboutDialog
 
14
 
 
15
# See xkcd_browser_lib.AboutDialog.py for more details about how this class works.
 
16
class AboutXkcdBrowserDialog(AboutDialog):
 
17
    __gtype_name__ = "AboutXkcdBrowserDialog"
 
18
    
 
19
    def finish_initializing(self, builder): # pylint: disable=E1002
 
20
        """Set up the about dialog"""
 
21
        super(AboutXkcdBrowserDialog, self).finish_initializing(builder)
 
22
 
 
23
        # Code for other initialization actions should be added here.
 
24