Skip to content

Commit

Permalink
Merge pull request matthewwithanm#501 from tirkarthi/fix-warnings
Browse files Browse the repository at this point in the history
Fix deprecation warning regarding invalid escape sequences.
  • Loading branch information
vstoykov authored May 5, 2020
2 parents c0e4433 + 9c99503 commit f5bc3ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
# built documents.
#
# The short X.Y version.
version = re.match('\d+\.\d+', pkgmeta['__version__']).group()
version = re.match(r'\d+\.\d+', pkgmeta['__version__']).group()
# The full version, including alpha/beta/rc tags.
release = pkgmeta['__version__']

Expand Down

0 comments on commit f5bc3ae

Please sign in to comment.