~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-04-15 08:59:12 UTC
  • Revision ID: mbp@sourcefrog.net-20050415085912-5ef1111207e03507
- Fix 'bzr help COMMAND' for Unicode changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
 
128
128
 
129
129
def get_cmd_handler(cmd):
130
 
    assert isinstance(cmd, str)
 
130
    cmd = str(cmd)
131
131
    
132
132
    cmd = cmd_aliases.get(cmd, cmd)
133
133