This is an automated email from the ASF dual-hosted git repository. robertlazarski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git
The following commit(s) were added to refs/heads/master by this push: new 8f01ac6c04 Make dist.py compatible with Python 3 8f01ac6c04 is described below commit 8f01ac6c046889dac64117237762af9d6319bf3f Author: Robert Lazarski <robertlazar...@gmail.com> AuthorDate: Tue Mar 4 09:00:07 2025 -1000 Make dist.py compatible with Python 3 --- etc/dist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/dist.py b/etc/dist.py index 1ed9ba0e87..830b2c803d 100644 --- a/etc/dist.py +++ b/etc/dist.py @@ -46,6 +46,6 @@ for suffix in [ "zip", "zip.asc", "zip.sha512" ]: call(["svn", "add", dist_dir]) if release.endswith("-SNAPSHOT"): - print "Skipping commit because version is a snapshot." + print ("Skipping commit because version is a snapshot.") else: call(["svn", "commit", dist_dir])