Skip to content

Commit

Permalink
Merge pull request #91 from ClearcodeHQ/requires-io-master
Browse files Browse the repository at this point in the history
[requires.io] dependency update on master branch
  • Loading branch information
fizyk committed Apr 11, 2018
2 parents a2cd829 + 311f59e commit b5a9f35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pytest==3.5.0
redis==2.10.6
pylama==7.4.3
pyflakes==1.6.0
pycodestyle==2.3.1
pycodestyle==2.4.0
pydocstyle==2.1.1
mccabe==0.6.1
pyroma==2.3
2 changes: 1 addition & 1 deletion src/pytest_redis/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def extract_version(text):
:rtype: str
:returns: version number, e.g., "2.4.14"
"""
match_object = re.search('\d+(?:\.\d+)+', text)
match_object = re.search(r'\d+(?:\.\d+)+', text)
if match_object:
extracted_version = match_object.group(0)
else:
Expand Down

0 comments on commit b5a9f35

Please sign in to comment.