Skip to content
Commits on Source (2)
graphlan (1.1.3-2) UNRELEASED; urgency=medium
graphlan (1.1.3-2) unstable; urgency=medium
* Use 2to3 to port to Python3
Closes: #936652
* debhelper-compat 12
* Standards-Version: 4.4.1
-- Andreas Tille <tille@debian.org> Fri, 08 Nov 2019 13:37:28 +0100
-- Andreas Tille <tille@debian.org> Fri, 08 Nov 2019 17:43:16 +0100
graphlan (1.1.3-1) unstable; urgency=medium
......
......@@ -87,6 +87,15 @@ Last-Update: Fri, 08 Nov 2019 13:37:28 +0100
clade_attr = ( ( 'clade_marker_size', float, 20.0 ),
@@ -96,7 +96,7 @@ leg_attr = ( ( 'annotation_background_co
( 'keys', str, "?" ) )
lev_sep = '.'
-legal_options = set(zip(*clade_attr+ext_attr+int_attr+structural_attr+global_graphical_attr+branch_attr+leg_attr)[0]) | set(['class'])
+legal_options = set(list(zip(*clade_attr+ext_attr+int_attr+structural_attr+global_graphical_attr+branch_attr+leg_attr))[0]) | set(['class'])
def random_keys(used_keys):
n = 1
@@ -255,17 +255,17 @@ class CircTree(PpaTree):
clade.properties = []
......