summaryrefslogtreecommitdiff
path: root/src/virtualenv/create/creator.py
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2020-03-17 12:00:31 +0000
committerGitHub <noreply@github.com>2020-03-17 12:00:31 +0000
commitb2185e4a39d836e8498b87a24b7fb5ec7aaf9276 (patch)
tree60fcca5d7211b7b4dd9ee89b3cc7ec6e76ff802f /src/virtualenv/create/creator.py
parentf1663de39c34803761a53eba4d3b39cc59ed1560 (diff)
downloadvirtualenv-b2185e4a39d836e8498b87a24b7fb5ec7aaf9276.tar.gz
Fix Windows Store support (#1725)
* Fix Windows Store support Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
Diffstat (limited to 'src/virtualenv/create/creator.py')
-rw-r--r--src/virtualenv/create/creator.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/virtualenv/create/creator.py b/src/virtualenv/create/creator.py
index 4c920dc..d4a2b93 100644
--- a/src/virtualenv/create/creator.py
+++ b/src/virtualenv/create/creator.py
@@ -24,6 +24,11 @@ HERE = Path(os.path.abspath(__file__)).parent
DEBUG_SCRIPT = HERE / "debug.py"
+class CreatorMeta(object):
+ def __init__(self):
+ self.error = None
+
+
@add_metaclass(ABCMeta)
class Creator(object):
"""A class that given a python Interpreter creates a virtual environment"""