This is an automated email from the ASF dual-hosted git repository.
bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 5019209 make it python3 compatible
5019209 is described below
commit 5019209401cde1bbaa73e51a3a300ebc7e28cea1
Author: Fei Deng <[email protected]>
AuthorDate: Thu Nov 16 09:31:38 2017 -0600
make it python3 compatible
---
tools/check-unused-dependencies | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/check-unused-dependencies b/tools/check-unused-dependencies
index 80567a4..457fc6b 100755
--- a/tools/check-unused-dependencies
+++ b/tools/check-unused-dependencies
@@ -92,9 +92,9 @@ for filename in config_files.split():
dependencies = list(get_dependencies(program))
if len(dependencies) > 1:
success = False
- print program
+ print (program)
for dependency in dependencies:
- print dependency
+ print (dependency)
if not success:
sys.exit(1)
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].