Skip to content

Commit e129fc7

Browse files
committed
Fixed raw string
1 parent 8ae5e0e commit e129fc7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli50/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def main():
135135
stdin = input(prompt)
136136
except EOFError:
137137
break
138-
if re.match("^\s*(?:y|yes)?\s*$", stdin, re.I):
138+
if re.match(r"^\s*(?:y|yes)?\s*$", stdin, re.I):
139139
try:
140140
print(ports(ID))
141141
login(ID)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
"console_scripts": ["cli50=cli50.__main__:main"]
2525
},
2626
url="https://github.com/cs50/cli50",
27-
version="8.0.0",
27+
version="8.0.1",
2828
include_package_data=True
2929
)

0 commit comments

Comments
 (0)