Mercurial > hg
diff hgext/eol.py @ 13612:21367c3da8aa
eol: remove unused argument in readhgeol()
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Sun, 13 Mar 2011 15:07:44 +0100 |
parents | 358924b0abce |
children | 85b80261ca10 |
line wrap: on
line diff
--- a/hgext/eol.py Sun Mar 13 15:07:44 2011 +0100 +++ b/hgext/eol.py Sun Mar 13 15:07:44 2011 +0100 @@ -187,17 +187,16 @@ _decode = {'LF': 'to-lf', 'CRLF': 'to-crlf', 'BIN': 'is-binary'} _encode = {'LF': 'to-lf', 'CRLF': 'to-crlf', 'BIN': 'is-binary'} - def readhgeol(self, node=None, data=None): - if data is None: - try: - if node is None: - # Cannot use workingctx.data() since it would load - # and cache the filters before we configure them. - data = self.wfile('.hgeol').read() - else: - data = self[node]['.hgeol'].data() - except (IOError, LookupError): - return None + def readhgeol(self, node=None): + try: + if node is None: + # Cannot use workingctx.data() since it would load + # and cache the filters before we configure them. + data = self.wfile('.hgeol').read() + else: + data = self[node]['.hgeol'].data() + except (IOError, LookupError): + return None if self.ui.config('eol', 'native', os.linesep) in ('LF', '\n'): self._decode['NATIVE'] = 'to-lf'