~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: mbp at sourcefrog
  • Date: 2005-04-14 07:31:35 UTC
  • Revision ID: mbp@sourcefrog.net-20050414073135-0456dca64cf02d80
Fix unicode bug in command line handler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
    For each file there is a single line giving its file state and name.
124
124
    The name is that in the current revision unless it is deleted or
125
125
    missing, in which case the old name is shown.
126
 
 
127
 
    :todo: Don't show unchanged files unless ``--all`` is given?
128
126
    """
129
127
    #import bzrlib.status
130
128
    #bzrlib.status.tree_status(Branch('.'))
987
985
    # mix arguments and options into one dictionary
988
986
    cmdargs = _match_args(cmd, args)
989
987
    for k, v in opts.items():
990
 
        cmdargs[k.replace('-', '_')] = v
 
988
        cmdargs[str(k.replace('-', '_'))] = v
991
989
 
992
990
    if profile:
993
991
        import hotshot