Merge pull request #1116 from matrix-org/paul/tiny-fixes

Fix typo "persiting"
This commit is contained in:
Paul Evans 2016-09-13 13:27:42 +01:00 committed by GitHub
commit 0f73f0e70e
1 changed files with 2 additions and 2 deletions

View File

@ -217,7 +217,7 @@ class PresenceHandler(object):
is some spurious presence changes that will self-correct. is some spurious presence changes that will self-correct.
""" """
logger.info( logger.info(
"Performing _on_shutdown. Persiting %d unpersisted changes", "Performing _on_shutdown. Persisting %d unpersisted changes",
len(self.user_to_current_state) len(self.user_to_current_state)
) )
@ -234,7 +234,7 @@ class PresenceHandler(object):
may stack up and slow down shutdown times. may stack up and slow down shutdown times.
""" """
logger.info( logger.info(
"Performing _persist_unpersisted_changes. Persiting %d unpersisted changes", "Performing _persist_unpersisted_changes. Persisting %d unpersisted changes",
len(self.unpersisted_users_changes) len(self.unpersisted_users_changes)
) )