mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-05-28 13:58:17 +00:00
Fix deprecation warning regarding invalid escape sequences.
This commit is contained in:
parent
c0e44331cc
commit
9c99503ae4
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ execfile(os.path.join(os.path.dirname(__file__), '..', 'imagekit',
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# 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.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = pkgmeta['__version__']
|
release = pkgmeta['__version__']
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue