1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 10:42:34 +01:00

add setup.cfg to configure flake8

This commit is contained in:
Mike Fährmann 2017-05-19 19:22:39 +02:00
parent 232fe2dd08
commit cbb4323f66
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
2 changed files with 5 additions and 1 deletions

View File

@ -403,7 +403,8 @@ HEADER_TEMPLATE = """<div usr class="gr">
HEADER_CUSTOM_TEMPLATE = """<div class='boxtop journaltop'>
<h2>
<img src="http://st.deviantart.net/minish/gruzecontrol/icons/journal.gif?2" style="vertical-align:middle" alt=""/>
<img src="http://st.deviantart.net/minish/gruzecontrol/icons/journal.gif\
?2" style="vertical-align:middle" alt=""/>
<a href="{url}">{title}</a>
</h2>
Journal Entry: <span>{date}</span>

3
setup.cfg Normal file
View File

@ -0,0 +1,3 @@
[flake8]
exclude = gallery_dl/__init__.py,gallery_dl/__main__.py,setup.py,build,scripts,archive
ignore = E203,E226