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-rampart.git
The following commit(s) were added to refs/heads/master by this push:
new cc65c034 Make dist.py compatible with Python 3
cc65c034 is described below
commit cc65c034c2572bc8f8cf880404e6dc6a0bd76cb4
Author: Robert Lazarski <[email protected]>
AuthorDate: Sun Oct 6 04:10:29 2024 -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 19040418..4aae047a 100644
--- a/etc/dist.py
+++ b/etc/dist.py
@@ -40,6 +40,6 @@ for classifier in [ "bin", "src" ]:
copyfile(join(root_dir, "modules", "distribution", "target", file),
join(dist_dir, file))
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])