~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

Fixing mutter() calls to not have to do string processing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
306
306
            a = str(a)
307
307
            optarg = None
308
308
            if a[1] == '-':
309
 
                mutter("  got option %r" % a)
 
309
                mutter("  got option %r", a)
310
310
                if '=' in a:
311
311
                    optname, optarg = a[2:].split('=', 1)
312
312
                else: