]> git.phdru.name Git - dotfiles.git/commitdiff
.vim/python/virtualenv.py: Remove deprecated universal mode
authorOleg Broytman <phd@phdru.name>
Sun, 5 Apr 2020 09:35:15 +0000 (12:35 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 5 Apr 2020 09:35:15 +0000 (12:35 +0300)
.vim/python/virtualenv.py

index 3b76fcd46adb0d3bb3b0f3ab2b1c68bc7cd321fe..078a0f8c54d226df0b28035a36a4bc140e38f930 100644 (file)
@@ -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))