Skip to content

Commit 4f3a30a

Browse files
author
Jeff Whitaker
committed
don't blow away labels list
1 parent 7c47829 commit 4f3a30a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mpl_toolkits/basemap/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2133,7 +2133,7 @@ def drawparallels(self,circles,color='k',linewidth=1.,zorder=None, \
21332133
p = ax.add_patch(self.clipcircle)
21342134
p.set_clip_on(False)
21352135
for merid in pardict:
2136-
lines,labels = pardict[merid]
2136+
lines,labs = pardict[merid]
21372137
for l in lines:
21382138
l.set_clip_path(self.clipcircle)
21392139
return pardict

0 commit comments

Comments
 (0)