[Trivial fix]Remove unnecessary slash

This is to remove the unncessary slash when the line doesn't
exceed the length of 79, to make the code more readable.

Change-Id: I2d25d55b6e3e7474d162fe6d2e6b9e325089980b
This commit is contained in:
zhufl 2019-05-06 17:36:00 +08:00
parent 8c941ed187
commit d17fd1d1ea
1 changed files with 1 additions and 2 deletions

View File

@ -101,8 +101,7 @@ def setup_service_messaging():
def setup_notifications():
global NOTIFICATION_TRANSPORT, NOTIFIER, MESSAGING_TRANSPORT
try:
NOTIFICATION_TRANSPORT = \
messaging.get_notification_transport(cfg.CONF)
NOTIFICATION_TRANSPORT = messaging.get_notification_transport(cfg.CONF)
except Exception:
LOG.error("Unable to setup notification transport. Reusing "
"service transport for that.")