summaryrefslogtreecommitdiff
path: root/docs/render_cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/render_cli.py')
-rw-r--r--docs/render_cli.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/render_cli.py b/docs/render_cli.py
index 88549ec..568235d 100644
--- a/docs/render_cli.py
+++ b/docs/render_cli.py
@@ -76,12 +76,16 @@ class CliTable(SphinxDirective):
return True
elif key == "creator":
if name == "venv":
- from virtualenv.create.via_global_ref.venv import Meta
+ from virtualenv.create.via_global_ref.venv import ViaGlobalRefMeta
- return Meta(True, True)
- from virtualenv.create.via_global_ref.builtin.via_global_self_do import Meta
+ meta = ViaGlobalRefMeta()
+ meta.symlink_error = None
+ return meta
+ from virtualenv.create.via_global_ref.builtin.via_global_self_do import BuiltinViaGlobalRefMeta
- return Meta([], True, True)
+ meta = BuiltinViaGlobalRefMeta()
+ meta.symlink_error = None
+ return meta
raise RuntimeError
setattr(class_n, func_name, a)