Flake8 fixes

This commit is contained in:
Markus Unterwaditzer 2016-01-14 02:51:22 +01:00
parent 196f9c858a
commit 893f29dbaf
2 changed files with 3 additions and 2 deletions

View file

@ -5,6 +5,8 @@ import os
from sphinx.ext import autodoc
import vdirsyncer
extensions = ['sphinx.ext.autodoc']
templates_path = ['_templates']
@ -16,7 +18,6 @@ project = u'vdirsyncer'
copyright = (u'2014-{}, Markus Unterwaditzer & contributors'
.format(datetime.date.today().strftime('%Y')))
import vdirsyncer
release = vdirsyncer.__version__
version = '.'.join(release.split('.')[:2]) # The short X.Y version.

View file

@ -6,4 +6,4 @@ norecursedirs = tests/storage/servers/*
[flake8]
# W503: Line break before operator
ignore = W503
ignore = W503, E731