diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-09-30 17:54:44 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-09-30 17:54:44 +0000 |
commit | c6607f8a53e965052cbcb3627fced7ed670e5538 (patch) | |
tree | 789ea700349f557e6a124072de140f239bafc76f /tools/scan-view/ScanView.py | |
parent | c0bb34b16d69c4ddd0fb3485a3ddbeceb4753505 (diff) |
scan-view: Remove some debugging prints.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56864 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/scan-view/ScanView.py')
-rw-r--r-- | tools/scan-view/ScanView.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/scan-view/ScanView.py b/tools/scan-view/ScanView.py index 4a9c175ac0..837adae0f7 100644 --- a/tools/scan-view/ScanView.py +++ b/tools/scan-view/ScanView.py @@ -291,7 +291,6 @@ class ScanViewRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): if i is None or i<0 or i>=len(c.files): return (False, 'Invalid file ID') files.append(c.files[i]) - print files if not title: return (False, "Missing title.") @@ -336,7 +335,6 @@ class ScanViewRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): return (t.success, t.status) def send_report_submit(self): - print self.fields report = self.get_scalar_field('report') c = self.get_report_context(report) if c.reportSource is None: |