From 1f151bea648a7d304a6cc2f4cf12135cb13c49bc Mon Sep 17 00:00:00 2001 From: Aaron Schrab Date: Wed, 15 Aug 2012 23:38:41 -0400 Subject: [PATCH] Remove obsolete comment Change in b319569 made this comment obsolete. --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index 94dad25..1fbbc92 100755 --- a/test.py +++ b/test.py @@ -102,7 +102,6 @@ class VimInterfaceScreen(VimInterface): repl = lambda m: '\\' + m.group(0) s = re.sub( r"[$^#\\']", repl, s ) - # Escape single quotes in command to protect from shell if sys.version_info >= (3,0): s = s.encode("utf-8")