konstantint / matplotlib-venn

Area-weighted venn-diagrams for Python/matplotlib
MIT License
496 stars 67 forks source link

venn2 unreferenced variable 's' #1

Closed nkrumm closed 11 years ago

nkrumm commented 11 years ago

line 208 in _venn2.py should read: subsets = [subsets.get(t, 0) for t in ['10', '01', '11']]

not subsets = [s.get(t, 0) for t in ['10', '01', '11']]

(as this results in an unreferenced variable exception)

Thanks! Nik