~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Shannon Weyrick
  • Date: 2011-08-15 20:10:03 UTC
  • mto: This revision was merged to the branch mainline in revision 6086.
  • Revision ID: weyrick@mozek.us-20110815201003-r7si9f20bmobfche
Minor cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
451
451
                                               ' value %r is not an SI unit.'
452
452
                                                % (option_name, val))
453
453
                    val = default
454
 
            except:
 
454
            except TypeError:
455
455
                val = default
456
456
        return val
457
457