Skip to content

Commit

Permalink
changing dict.iteritems() to python3 method
Browse files Browse the repository at this point in the history
  • Loading branch information
ConstantConstantin committed Apr 12, 2024
1 parent ebd6101 commit 1d3e452
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/genjava/gradle_project.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

##############################################################################
# Imports
Expand Down Expand Up @@ -79,7 +79,7 @@ def get_templates():

def populate_project(project_name, project_version, pkg_directory, gradle_project_dir, msg_dependencies):
author = author_name()
for filename, template in get_templates().iteritems():
for filename, template in get_templates().items():
contents = instantiate_genjava_template(template, project_name, project_version, pkg_directory, author, msg_dependencies)
try:
p = os.path.abspath(os.path.join(gradle_project_dir, filename))
Expand Down

0 comments on commit 1d3e452

Please sign in to comment.