Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed May 10, 2018
1 parent 011809a commit 985355d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion irc/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
# set the version tuple
try:
VERSION_STRING = pkg_resources.require('irc')[0].version
VERSION = tuple(int(res) for res in re.findall('\d+', VERSION_STRING))
VERSION = tuple(int(res) for res in re.findall(r'\d+', VERSION_STRING))
except Exception:
VERSION_STRING = 'unknown'
VERSION = ()
Expand Down

0 comments on commit 985355d

Please sign in to comment.