/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to lib/stdhome/program.py

  • Committer: Tim Marston
  • Date: 2021-09-01 12:55:42 UTC
  • Revision ID: tim@ed.am-20210901125542-zbuzpswfo7mmm5br
fix broken use of self in @staticmethod

Show diffs side-by-side

added added

removed removed

72
72
                print("  stage-add     add (but don't commit) files/changes to local repository")
73
73
#               print("  stage-remove  delete *but don't comit) files from the local repository")
74
74
                print("  stage-revert  revert changes in the local repository")
75
 
#               print("  stage-status  show status of local repository")
 
75
                print("  stage-status  show status of local repository")
76
76
#               print("  stage-diff    shows changes in local repository")
77
77
                print("  stage-commit  commit changes in the local repository")
78
78
                print()
120
120
                        'st': 'status',
121
121
                        'co': 'init',
122
122
                        'ci': 'add',
 
123
                        'stst': 'stage-status',
 
124
                        'stadd': 'stage-add',
 
125
                        'strm': 'stage-remove',
 
126
                        'stci': 'stage-commit',
123
127
                }.get( command, False )
124
128
                if alias: return alias
125
129