~ralsina/ubuntuone-control-panel/fix-scroll

« back to all changes in this revision

Viewing changes to bin/ubuntuone-control-panel

  • Committer: natalia.bidart at canonical
  • Date: 2010-09-15 21:43:48 UTC
  • Revision ID: natalia.bidart@canonical.com-20100915214348-qd7vpoj85z0jhx0m
Initial directory structure for new project.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
# -*- coding: utf-8 -*-
 
3
 
 
4
# Authors: Natalia B Bidart <natalia.bidart@canonical.com>
 
5
#
 
6
# Copyright 2010 Canonical Ltd.
 
7
#
 
8
# This program is free software: you can redistribute it and/or modify it
 
9
# under the terms of the GNU General Public License version 3, as published
 
10
# by the Free Software Foundation.
 
11
#
 
12
# This program is distributed in the hope that it will be useful, but
 
13
# WITHOUT ANY WARRANTY; without even the implied warranties of
 
14
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
15
# PURPOSE.  See the GNU General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License along
 
18
# with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
"""Execute the graphical interface for the Ubuntu One control panel."""
 
20
 
 
21
 
 
22
import ubuntuone.control_panel.gui
 
23
 
 
24
 
 
25
if __name__ == "__main__":
 
26
    ui = gui.control_panel.ControlPanelUI()
 
27
    ui.main()