diff options
author | Douglas Bagnall <douglas.bagnall@catalyst.net.nz> | 2015-05-13 15:38:22 +1200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2015-06-12 06:57:16 +0200 |
commit | 490eb10023c219e04273f2ff72358d0521203fb1 (patch) | |
tree | c13794cb2a90c283cc0fdfee97478c6dcd249685 /python | |
parent | 5ea0dfb46f5192b8bc2c8d7d8bea444364cf124e (diff) | |
download | samba-490eb10023c219e04273f2ff72358d0521203fb1.tar.gz |
KCC: pep8 line length in plot all connections
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/samba/kcc/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/samba/kcc/__init__.py b/python/samba/kcc/__init__.py index 4a2634b71bd..7836aee779e 100644 --- a/python/samba/kcc/__init__.py +++ b/python/samba/kcc/__init__.py @@ -2392,8 +2392,9 @@ class KCC(object): dot_edges.append((con.from_dnstr, dsa.dsa_dnstr)) verify_and_dot(basename, dot_edges, vertices=dot_vertices, - label=self.my_dsa_dnstr, properties=verify_properties, - debug=DEBUG, verify=verify, dot_file_dir=self.dot_file_dir, + label=self.my_dsa_dnstr, + properties=verify_properties, debug=DEBUG, + verify=verify, dot_file_dir=self.dot_file_dir, directed=True, edge_colors=edge_colours, vertex_colors=vertex_colours) |