aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli.py b/cli.py
index 540eecc6e..6c45695a8 100644
--- a/cli.py
+++ b/cli.py
@@ -219,7 +219,7 @@ def create(agent_name):
import re
import shutil
- if not re.match("\w*$", agent_name):
+ if not re.match(r"\w*$", agent_name):
click.echo(
click.style(
f"😞 Agent name '{agent_name}' is not valid. It should not contain spaces or special characters other than -_",