scan-view: Remove some debugging prints.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56864 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2008-09-30 17:54:44 +00:00
Родитель c0bb34b16d
Коммит c6607f8a53
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -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: