~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-06-21 06:10:18 UTC
  • Revision ID: mbp@sourcefrog.net-20050621061017-12e8f0ff45228338
- move whitebox/blackbox modules into bzrlib.selftest subdirectory

Show diffs side-by-side

added added

removed removed

Lines of Context:
1159
1159
    hidden = True
1160
1160
    def run(self):
1161
1161
        from bzrlib.selftest import selftest
1162
 
        if selftest():
1163
 
            return 0
1164
 
        else:
1165
 
            return 1
1166
 
 
 
1162
        return int(not selftest())
1167
1163
 
1168
1164
 
1169
1165
class cmd_version(Command):