From 3dcb2900b2062a57e7e30dcb82b1ed20b9d44bec Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 3 Jul 2014 20:40:09 +0200 Subject: [PATCH] rst: Remove comment about requiring Python 2.4+. Ultisnips needs 2.6, so this is save. --- UltiSnips/rst.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UltiSnips/rst.snippets b/UltiSnips/rst.snippets index 5c1df1c..624b201 100644 --- a/UltiSnips/rst.snippets +++ b/UltiSnips/rst.snippets @@ -77,7 +77,7 @@ def check_file_exist(rst_path, relative_path): try: rst_char_len = vim.strwidth # Requires Vim 7.3+ except AttributeError: - from unicodedata import east_asian_width # Requires Python 2.4+ + from unicodedata import east_asian_width def rst_char_len(s): """Return the required over-/underline length for s.""" result = 0