Remove useless print()

This commit is contained in:
David Hoppenbrouwers
2022-10-10 14:21:49 +02:00
parent 3cbdb10104
commit c35ded852f
2 changed files with 0 additions and 3 deletions

View File

@@ -276,7 +276,6 @@ class DB:
(thread_id, author_id, text, time, time, thread_id, author_id, time)
)
if c.rowcount > 0:
print('SHIT')
c.execute('''
update threads
set update_time = ?

View File

@@ -582,8 +582,6 @@ def create_comment_tree(comments):
for c in l:
sort_time(c.children)
sort_time(root)
if __debug__:
print('building tree with', len(comment_map), 'comments took', time.time() - start, 'seconds')
return root