~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/globbing.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-07-09 18:02:18 UTC
  • mfrom: (5339.1.1 invalidpattern-python25)
  • Revision ID: pqm@pqm.ubuntu.com-20100709180218-431qg3bpsu3yy53o
(jameinel) Rename errors.InvalidPattern argument message=>msg to work with
 multiple Python versions. (Parth Malwankar)

Show diffs side-by-side

added added

removed removed

Lines of Context:
217
217
                if match:
218
218
                    return patterns[match.lastindex -1]
219
219
        except errors.InvalidPattern, e:
220
 
            # We can't show the default e.message to the user as thats for
 
220
            # We can't show the default e.msg to the user as thats for
221
221
            # the combined pattern we sent to regex. Instead we indicate to
222
222
            # the user that an ignore file needs fixing.
223
 
            mutter('Invalid pattern found in regex: %s.', e.message)
224
 
            e.message = "File ~/.bazaar/ignore or .bzrignore contains errors."
 
223
            mutter('Invalid pattern found in regex: %s.', e.msg)
 
224
            e.msg = "File ~/.bazaar/ignore or .bzrignore contains errors."
225
225
            raise e
226
226
        return None
227
227