diff options
| author | Bernát Gábor <bgabor8@bloomberg.net> | 2020-01-02 16:32:54 +0000 |
|---|---|---|
| committer | Bernat Gabor <bgabor8@bloomberg.net> | 2020-01-10 15:38:36 +0000 |
| commit | ff6dc73d447a3c6276af64df2eb91e2709e450a3 (patch) | |
| tree | cf2c4be51c557ce2157cc32279cbd53464df3bf5 /src/virtualenv/activation/batch/__init__.py | |
| parent | 1cb5216252dbb144a3ee3976f9ec92def3dfc6db (diff) | |
| download | virtualenv-ff6dc73d447a3c6276af64df2eb91e2709e450a3.tar.gz | |
unicode support (#1477)
* creator unicode support
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* activator support
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* fix
* add space
* python3.4 support
* Windows fixes
* some fixes
* fix powershell requires utf-16
* try to fix python2 windows
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* use utf-8 for activation scripts
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* fix
* more fix
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* fix
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* windows path py2.7
* fixes for Python 2 and unicode on Windows
* do not single out mbcs, but the file system encoder
* do not install pathlib python 2 windows
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* fix encoding on py35
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
Diffstat (limited to 'src/virtualenv/activation/batch/__init__.py')
| -rw-r--r-- | src/virtualenv/activation/batch/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/virtualenv/activation/batch/__init__.py b/src/virtualenv/activation/batch/__init__.py index 4e4b839..2c3da44 100644 --- a/src/virtualenv/activation/batch/__init__.py +++ b/src/virtualenv/activation/batch/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import, unicode_literals -from pathlib2 import Path +from virtualenv.util import Path from ..via_template import ViaTemplateActivator |
