~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: chadnickbok
  • Date: 2009-01-13 05:33:58 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1108
Updated the settings page to require the old password
when updating the password. Note that this field
is not shown when using ldap authentication

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
import setup.configure
31
31
import setup.build
32
32
import setup.install
 
33
import setup.listmake
33
34
 
34
35
 
35
36
def main(argv=None):
63
64
        print """Usage: python setup.py operation [options]
64
65
Operation can be:
65
66
    help [operation]
 
67
    listmake (developer use only)
66
68
    config
67
69
    build
68
70
    install
80
82
            'help' : help,
81
83
            'config' : setup.configure.configure,
82
84
            'build' : setup.build.build,
 
85
            'listmake' : setup.listmake.listmake,
83
86
            'install' : setup.install.install,
84
87
            #'updatejails' : None,
85
88
        }[operation]