diff hgext/win32mbcs.py @ 17428:72803c8edaa4

avoid using abbreviations that look like spelling errors
author Mads Kiilerich <mads@kiilerich.com>
date Mon, 27 Aug 2012 23:14:27 +0200
parents 38caf405d010
children 4091b0322918
line wrap: on
line diff
--- a/hgext/win32mbcs.py	Tue Aug 21 02:41:20 2012 +0200
+++ b/hgext/win32mbcs.py	Mon Aug 27 23:14:27 2012 +0200
@@ -119,7 +119,7 @@
     def f(*args, **kwds):
         return wrapper(func, args, kwds)
     try:
-        f.__name__ = func.__name__                # fail with python23
+        f.__name__ = func.__name__ # fails with Python 2.3
     except Exception:
         pass
     setattr(module, name, f)