Skip to content

Commit

Permalink
Merge pull request #3203 from BoboTiG/fix-invalid-seq-warnings
Browse files Browse the repository at this point in the history
Fix DeprecationWarning: invalid escape sequence in dodo.py
  • Loading branch information
Kwpolska committed Jan 8, 2019
2 parents a683c88 + f288027 commit 23539b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS.txt
Expand Up @@ -78,6 +78,7 @@
* `Michael Joseph <https://github.com/michaeljoseph>`_
* `Michael McNeil Forbes <https://github.com/mforbes>`_
* `Michal Petrucha <https://github.com/koniiiik>`_
* `Mickaël Schoentgen <https://github.com/BoboTiG>`_
* `Miguel Ángel García <https://github.com/magmax>`_
* `Mitch Chapman <https://github.com/mchapman87501>`_
* `mrabbitt <https://github.com/mrabbitt>`_
Expand Down
2 changes: 1 addition & 1 deletion dodo.py
Expand Up @@ -28,7 +28,7 @@ def task_pydocstyle():
"""pydocstyle -- static check for docstring style"""
yield {
'name': os.path.join(os.getcwd(), 'nikola'),
'actions': ["pydocstyle --count --match-dir='(?!^\.)(?!data).*' nikola/"],
'actions': ["pydocstyle --count --match-dir='(?!^\\.)(?!data).*' nikola/"],
}


Expand Down

0 comments on commit 23539b5

Please sign in to comment.