Commit 80cc2b92 by Harry Marr

s/queries/operations/

parent b2efe44f
...@@ -6,7 +6,7 @@ from operation_tracker import MongoOperationTracker ...@@ -6,7 +6,7 @@ from operation_tracker import MongoOperationTracker
class MongoDebugPanel(DebugPanel): class MongoDebugPanel(DebugPanel):
"""Panel that shows information about MongoDB queries. """Panel that shows information about MongoDB operations.
""" """
name = 'MongoDB' name = 'MongoDB'
has_content = True has_content = True
...@@ -34,7 +34,7 @@ class MongoDebugPanel(DebugPanel): ...@@ -34,7 +34,7 @@ class MongoDebugPanel(DebugPanel):
return '{0} operations in {1:.2f}ms'.format(num_queries, total_time) return '{0} operations in {1:.2f}ms'.format(num_queries, total_time)
def title(self): def title(self):
return 'MongoDB Queries' return 'MongoDB Operations'
def url(self): def url(self):
return '' return ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment