~jonobacon/ubuntu-accomplishments-daemon/ubuntu-accomplishments-daemon

« back to all changes in this revision

Viewing changes to accomplishments/gui/AboutTrophyinfoDialog.py

  • Committer: Jono Bacon
  • Date: 2012-04-08 22:11:10 UTC
  • Revision ID: jono@ubuntu.com-20120408221110-3ihxpctu5kryp460
Creating ubuntu package

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