~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ignores.py

  • Committer: Vincent Ladeuil
  • Date: 2010-04-26 13:51:08 UTC
  • mto: (5184.2.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5185.
  • Revision ID: v.ladeuil+lp@free.fr-20100426135108-vwmfphc2xg1w058c
Random cleanups to catch up with copyright updates in trunk.

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')