rst: Remove comment about requiring Python 2.4+.

Ultisnips needs 2.6, so this is save.
This commit is contained in:
Christian 2014-07-03 20:40:09 +02:00
parent bb35409199
commit 3dcb2900b2

View File

@ -77,7 +77,7 @@ def check_file_exist(rst_path, relative_path):
try: try:
rst_char_len = vim.strwidth # Requires Vim 7.3+ rst_char_len = vim.strwidth # Requires Vim 7.3+
except AttributeError: except AttributeError:
from unicodedata import east_asian_width # Requires Python 2.4+ from unicodedata import east_asian_width
def rst_char_len(s): def rst_char_len(s):
"""Return the required over-/underline length for s.""" """Return the required over-/underline length for s."""
result = 0 result = 0