Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit 44af620

Browse files
committed
Merge pull request #319 from fbvs/master
Pep8 fix
2 parents a3818c2 + 1a11b59 commit 44af620

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/storage/ellipticsbackend.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@ def __init__(self, config):
5555
at_least_one = False
5656
for host, port in config.get('elliptics_nodes').iteritems():
5757
try:
58-
self._elliptics_node.add_remote(host, port, config.get('elliptics_addr_family', 2))
58+
self._elliptics_node.add_remote(host, port,
59+
config.get(
60+
'elliptics_addr_family',
61+
2))
5962
at_least_one = True
6063
except Exception as err:
6164
logger.error("Failed to add remote %s:%d %s", host, port, err)

0 commit comments

Comments
 (0)