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() |