Merge "Fix invalid syntax in pm_qos_mgr.py"

This commit is contained in:
Zuul 2019-07-09 13:44:37 +00:00 committed by Gerrit Code Review
commit f90239569b
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ def main():
try:
notifier.loop()
except pyinotify.NotifierError, err:
except pyinotify.NotifierError as err:
LOG.error('Problem with notifier.loop(), error: %s', err)
if __name__ == "__main__":