svn commit: r389986 - head/security/vuxml/files

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Wed Jun 17 17:35:59 UTC 2015


Author: sunpoet
Date: Wed Jun 17 17:35:58 2015
New Revision: 389986
URL: https://svnweb.freebsd.org/changeset/ports/389986

Log:
  - Make it compatible with Python 3.x
  
  Approved by:	delphij

Modified:
  head/security/vuxml/files/extra-validation.py

Modified: head/security/vuxml/files/extra-validation.py
==============================================================================
--- head/security/vuxml/files/extra-validation.py	Wed Jun 17 17:27:27 2015	(r389985)
+++ head/security/vuxml/files/extra-validation.py	Wed Jun 17 17:35:58 2015	(r389986)
@@ -6,7 +6,7 @@ import xml.etree.ElementTree as ET
 import sys
 
 if len(sys.argv) != 2:
-    print "Usage: %s vuln.xml" % (sys.argv[0])
+    print("Usage: %s vuln.xml" % (sys.argv[0]))
     sys.exit(1)
 
 tree = ET.parse(sys.argv[1])


More information about the svn-ports-head mailing list