dotfiles/vim/vim.symlink/bundle/ultisnips/test/util.py
2015-01-11 09:44:19 +00:00

15 lines
340 B
Python

import platform
try:
import unidecode
UNIDECODE_IMPORTED = True
except ImportError:
UNIDECODE_IMPORTED = False
def running_on_windows():
if platform.system() == "Windows":
return "Does not work on Windows."
def no_unidecode_available():
if not UNIDECODE_IMPORTED:
return "unidecode is not available."