Flake8 errors corrected

Corrected all errors given by Flake8 except line length
This commit is contained in:
Phyks 2013-07-23 21:29:14 +02:00
parent a74f4f3feb
commit cb0acf7ea6
2 changed files with 5 additions and 9 deletions

4
TODO
View File

@ -2,7 +2,3 @@ What happen when a file is moved with git ?
Flake8 the whole thing ! :) Flake8 the whole thing ! :)
basepath ? basepath ?
tags / smileys / ... tags / smileys / ...
Known bugs:
==========
* Test RSS in Firefox (different view than traditionnal RSS view ?)

View File

@ -11,6 +11,7 @@ import subprocess
from time import gmtime, strftime, mktime from time import gmtime, strftime, mktime
def isset(variable): def isset(variable):
return variable in locals() or variable in globals() return variable in locals() or variable in globals()
@ -517,7 +518,6 @@ for i in years_list:
except IOError: except IOError:
sys.exit("[ERROR] Error while generating years and months pages. Check your gen folder, you may need to regenerate some articles. The error was due to "+article+".") sys.exit("[ERROR] Error while generating years and months pages. Check your gen folder, you may need to regenerate some articles. The error was due to "+article+".")
page_month += footer_gen page_month += footer_gen
try: try:
with open("blog/"+i+"/"+j+"/index.html", "w") as page_month_fh: with open("blog/"+i+"/"+j+"/index.html", "w") as page_month_fh: