summaryrefslogtreecommitdiff
path: root/gitlab/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/cli.py')
-rw-r--r--gitlab/cli.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gitlab/cli.py b/gitlab/cli.py
index c124e74..4efb3b2 100644
--- a/gitlab/cli.py
+++ b/gitlab/cli.py
@@ -272,6 +272,8 @@ def _get_parser() -> argparse.ArgumentParser:
def _parse_value(v: Any) -> Any:
+ if isinstance(v, str) and v.startswith("@@"):
+ return v[1:]
if isinstance(v, str) and v.startswith("@"):
# If the user-provided value starts with @, we try to read the file
# path provided after @ as the real value. Exit on any error.