Skip to content

Commit

Permalink
Merge pull request #25 from dirk-thomas/groovy-devel
Browse files Browse the repository at this point in the history
python 3 compatibility
  • Loading branch information
dirk-thomas committed Nov 26, 2013
2 parents 4fec477 + 916ee2f commit 9de69b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test/deep/deep.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ def write_manifest(dir, manifest):
file = os.path.join(dir, 'manifest.xml')
try:
f = open(file, 'w')
print "generating %s"%file
print("generating %s"%file)
f.write(manifest)
finally:
f.close()

for i in xrange(1, 101):
for i in range(1, 101):
packagename = package%(i-1)
manifest = template%(i-1, i)
write_manifest(packagename, manifest)
Expand Down

0 comments on commit 9de69b7

Please sign in to comment.