~mhall119/quickly/reboot-proposed

« back to all changes in this revision

Viewing changes to data/templates/ubuntu-application/project_root/python/Aboutcamel_case_nameDialog.py

  • Committer: Michael Hall
  • Date: 2012-10-24 12:09:39 UTC
  • Revision ID: mhall119@ubuntu.com-20121024120939-g0smpquq4lyoxahz
Start on re-creating ubuntu-application template

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