From 6bb64389fb09a9728a84b3d35a27e530e58cabbe Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 5 Apr 2020 12:35:15 +0300 Subject: [PATCH] .vim/python/virtualenv.py: Remove deprecated universal mode --- .vim/python/virtualenv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vim/python/virtualenv.py b/.vim/python/virtualenv.py index 3b76fcd..078a0f8 100644 --- a/.vim/python/virtualenv.py +++ b/.vim/python/virtualenv.py @@ -7,4 +7,4 @@ if virtualenv_dir: if sys.version_info[0] == 2: execfile(activate_this, dict(__file__=activate_this)) else: - exec(open(activate_this, 'rU').read(), dict(__file__=activate_this)) + exec(open(activate_this, 'r').read(), dict(__file__=activate_this)) -- 2.39.2