line too long

This commit is contained in:
Thomas S Hatch 2013-07-16 18:18:51 -06:00
parent e487aeeaf0
commit a80e43cb40

View File

@ -50,7 +50,9 @@ def cluster_join(riak_user=None, riak_host=None):
'''
if not all((riak_user, riak_host)):
return False
return not bool(__salt__['cmd.retcode']('riak-admin cluster join {0}@{1}'.format(riak_user, riak_host)))
return not bool(__salt__['cmd.retcode'](
'riak-admin cluster join {0}@{1}'.format(riak_user, riak_host))
)
def cluster_plan():