This is an automated email from the ASF dual-hosted git repository.
veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-axiom.git
The following commit(s) were added to refs/heads/master by this push:
new 60e273a8d Make dist.py compatible with Python 3
60e273a8d is described below
commit 60e273a8d3b85e64330393e9316b66b84f5496cf
Author: Andreas Veithen <[email protected]>
AuthorDate: Wed Sep 18 12:53:10 2024 +0100
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 f488c48cd..25c3292ae 100644
--- a/etc/dist.py
+++ b/etc/dist.py
@@ -40,6 +40,6 @@ for classifier in [ "bin", "src" ]:
copyfile(join(axiom_dir, "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])