Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/reports/bin/processReports.py

Issue 8793015: Reports - user profile (Closed)
Patch Set: Created Nov. 6, 2012, 2:05 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sitescripts/reports/bin/processReports.py
===================================================================
--- a/sitescripts/reports/bin/processReports.py
+++ b/sitescripts/reports/bin/processReports.py
@@ -40,9 +40,10 @@
def processReports():
for report in getReports():
guid = report.get('guid', None)
+ print >>sys.stderr, guid
Wladimir Palant 2012/11/07 08:38:15 Debug code?
Andrey Novikov 2012/11/07 09:38:48 Sorry, this file should not be in the review at al
reportData = getReport(guid)
- if 'screenshot' in reportData:
- saveReport(guid, reportData)
+ #if 'screenshot' in reportData:
+ saveReport(guid, reportData)
Wladimir Palant 2012/11/07 08:38:15 Here as well?
if __name__ == '__main__':
setupStderr()

Powered by Google App Engine
This is Rietveld