We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ae5e0e commit e129fc7Copy full SHA for e129fc7
cli50/__main__.py
@@ -135,7 +135,7 @@ def main():
135
stdin = input(prompt)
136
except EOFError:
137
break
138
- if re.match("^\s*(?:y|yes)?\s*$", stdin, re.I):
+ if re.match(r"^\s*(?:y|yes)?\s*$", stdin, re.I):
139
try:
140
print(ports(ID))
141
login(ID)
setup.py
@@ -24,6 +24,6 @@
24
"console_scripts": ["cli50=cli50.__main__:main"]
25
},
26
url="https://github.com/cs50/cli50",
27
- version="8.0.0",
+ version="8.0.1",
28
include_package_data=True
29
)
0 commit comments