Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thebjorn committed Nov 25, 2019
1 parent 4e5adde commit 953df7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pydeps/depgraph2dot.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def render(self, depgraph, ctx):
kwargs = {}

if src.name in depgraph.cyclenodes:
kwargs['shape'] = 'octacon'
kwargs['shape'] = 'octagon'

ctx.write_node(
src.name,
Expand Down Expand Up @@ -111,7 +111,7 @@ def render(self, depgraph, ctx):
kwargs = {}

if src.name in depgraph.cyclenodes:
kwargs['shape'] = 'octacon'
kwargs['shape'] = 'octagon'

ctx.write_node(
src.name, label=src.label,
Expand Down

0 comments on commit 953df7a

Please sign in to comment.