mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-16 21:30:23 +00:00
Fix deprecation warning regarding invalid escape sequences.
This commit is contained in:
parent
9d450a78b8
commit
417e33ff5a
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ execfile(os.path.join(os.path.dirname(__file__), '..', 'imagekit',
|
|||
# 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__']
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue