# HG changeset patch # User Steve Borho # Date 1300028586 18000 # Node ID 78cc35e75eccf5113827da06b0dd89b7216f04c8 # Parent 0a8ba9124623e68e19f0fa92ad2d3edb8058db77 eol: do not abort when win32text is found, only warn The win32text extension does not break eol or vice-versa, so it is not a fatal error to have both of them enabled. It's just folly. So spewing warnings in this condition is preferrable to aborting. When both extensions are enabled, the user now sees: % hg st the eol extension is incompatible with the win32text extension win32text is deprecated: http://mercurial.selenic.com/wiki/Win32TextExtension M hgext/eol.py diff -r 0a8ba9124623 -r 78cc35e75ecc hgext/eol.py --- a/hgext/eol.py Sun Mar 13 15:59:24 2011 +0100 +++ b/hgext/eol.py Sun Mar 13 10:03:06 2011 -0500 @@ -165,8 +165,8 @@ def extsetup(ui): try: extensions.find('win32text') - raise util.Abort(_("the eol extension is incompatible with the " - "win32text extension")) + ui.warn(_("the eol extension is incompatible with the " + "win32text extension\n")) except KeyError: pass