2008-02-02 Raphael Ackermann <raphael.ackermann@gmail.com>
* src/DataViews/GrampletView.py * src/ReportBase/_ReportUtils.py * src/gen/proxy/private.py * src/plugins/WebCal.py * src/plugins/CmdRef.py * src/Models/_ListCursor.py * src/Models/_PathCursor.py PEP 8 fixes. Change if var == True --> if var if var is True --> if var if var == False --> if not var if var == None --> if var is None svn: r9994
This commit is contained in:
@@ -560,7 +560,7 @@ class WebReport(Report):
|
||||
# at bottom of calendar
|
||||
if thisday.month > month and thisday.year >= year:
|
||||
# only do it once per row
|
||||
if last == True:
|
||||
if last:
|
||||
last = False
|
||||
of.write(' <td colspan="')
|
||||
of.write(str(7 - day_col))
|
||||
|
||||
Reference in New Issue
Block a user