Skip to content

Commit

Permalink
print statement is python3-compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaeyoung committed Oct 26, 2017
1 parent b93bb28 commit 3acdcfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GrasshopperSyntax/Grasshopper.py
Expand Up @@ -96,7 +96,7 @@ def __str__(self):
l = Line(i, i+1, i+2, i-1, i-2, i-5)
allLines.append(l)

print allLines[5]
print(allLines[5])


class Point:
Expand Down

0 comments on commit 3acdcfd

Please sign in to comment.