~fotiadis90/sshfs-mounter/quickly_trunk

« back to all changes in this revision

Viewing changes to likan_mount_manager/AboutLikanMountManagerDialog.py

  • Committer: fotiadis90 at gmail
  • Date: 2013-03-04 15:21:02 UTC
  • Revision ID: fotiadis90@gmail.com-20130304152102-768fs24y8bk95uxc
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
from locale import gettext as _
 
7
 
 
8
import logging
 
9
logger = logging.getLogger('likan_mount_manager')
 
10
 
 
11
from likan_mount_manager_lib.AboutDialog import AboutDialog
 
12
 
 
13
# See likan_mount_manager_lib.AboutDialog.py for more details about how this class works.
 
14
class AboutLikanMountManagerDialog(AboutDialog):
 
15
    __gtype_name__ = "AboutLikanMountManagerDialog"
 
16
    
 
17
    def finish_initializing(self, builder): # pylint: disable=E1002
 
18
        """Set up the about dialog"""
 
19
        super(AboutLikanMountManagerDialog, self).finish_initializing(builder)
 
20
 
 
21
        # Code for other initialization actions should be added here.
 
22