Fix typos

This commit is contained in:
Dimitris Apostolou 2022-01-02 13:59:17 +02:00
parent 0bbf19aab9
commit 6f76383c56
No known key found for this signature in database
GPG key ID: 4B5D20E938204A8A
56 changed files with 131 additions and 131 deletions

View file

@ -398,7 +398,7 @@ class UiRequestPlugin(object):
for part in self.renderMemory():
yield part
gc.collect() # Implicit grabage collection
gc.collect() # Implicit garbage collection
yield "Done in %.1f" % (time.time() - s)
@helper.encodeResponse
@ -437,7 +437,7 @@ class UiRequestPlugin(object):
yield "- %s: %s<br>" % (attr, html.escape(str(getattr(obj, attr))))
yield "<br>"
gc.collect() # Implicit grabage collection
gc.collect() # Implicit garbage collection
@helper.encodeResponse
def actionListobj(self):
@ -505,7 +505,7 @@ class UiRequestPlugin(object):
for obj, stat in sorted(list(ref_count.items()), key=lambda x: x[1][0], reverse=True)[0:30]: # Sorted by count
yield " - %.1fkb = %s x %s<br>" % (stat[1], stat[0], html.escape(str(obj)))
gc.collect() # Implicit grabage collection
gc.collect() # Implicit garbage collection
@helper.encodeResponse
def actionGcCollect(self):