Skip to content

Commit

Permalink
Fix tab issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jandecaluwe committed Jul 18, 2015
1 parent 9bc72cc commit cf3f1af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion myhdl/conversion/_toVHDL.py
Original file line number Diff line number Diff line change
Expand Up @@ -1291,7 +1291,7 @@ def getName(self, node):
s = "'Z'"
else:
assert hasattr(node.vhd, 'size')
s = "(%d downto 0 => 'Z')" % (node.vhd.size-1)
s = "(%d downto 0 => 'Z')" % (node.vhd.size-1)
elif n in self.tree.vardict:
s = n
obj = self.tree.vardict[n]
Expand Down

0 comments on commit cf3f1af

Please sign in to comment.