~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ignores.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-04-26 16:50:34 UTC
  • mfrom: (5184.2.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100426165034-e7tdcndfb0jlr11e
(vila) Various test cleanups and copyright updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2006-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
59
59
        # Otherwise go though line by line and pick out the 'good'
60
60
        # decodable lines
61
61
        lines = ignore_file.split('\n')
62
 
        unicode_lines = []    
 
62
        unicode_lines = []
63
63
        for line_number, line in enumerate(lines):
64
64
            try:
65
65
                unicode_lines.append(line.decode('utf-8'))
67
67
                # report error about line (idx+1)
68
68
                warning('.bzrignore: On Line #%d, malformed utf8 character. '
69
69
                        'Ignoring line.' % (line_number+1))
70
 
    
 
70
 
71
71
    # Append each line to ignore list if it's not a comment line
72
72
    for line in unicode_lines:
73
73
        line = line.rstrip('\r\n')