~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Vincent Ladeuil
  • Date: 2011-03-31 13:35:54 UTC
  • mto: This revision was merged to the branch mainline in revision 5746.
  • Revision ID: v.ladeuil+lp@free.fr-20110331133554-ayjtqso2gej6omvn
Remove debug code

Show diffs side-by-side

added added

removed removed

Lines of Context:
279
279
        # We need to iterate until no more refs appear ({{foo}} will need two
280
280
        # iterations for example).
281
281
        while True:
282
 
            try:
283
 
                raw_chunks = self.option_ref_re.split(result)
284
 
            except TypeError:
285
 
                import pdb; pdb.set_trace()
 
282
            raw_chunks = self.option_ref_re.split(result)
286
283
            if len(raw_chunks) == 1:
287
284
                # Shorcut the trivial case: no refs
288
285
                return result