You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pylucene-commits@lucene.apache.org by va...@apache.org on 2022/01/13 21:45:20 UTC

svn commit: r1897018 - /lucene/pylucene/trunk/jcc/jcc2/python.py

Author: vajda
Date: Thu Jan 13 21:45:19 2022
New Revision: 1897018

URL: http://svn.apache.org/viewvc?rev=1897018&view=rev
Log:
missing backslash

Modified:
    lucene/pylucene/trunk/jcc/jcc2/python.py

Modified: lucene/pylucene/trunk/jcc/jcc2/python.py
URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc2/python.py?rev=1897018&r1=1897017&r2=1897018&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/jcc2/python.py (original)
+++ lucene/pylucene/trunk/jcc/jcc2/python.py Thu Jan 13 21:45:19 2022
@@ -1614,7 +1614,7 @@ def compile(env, jccPath, output, module
 
     extname = '_%s' %(moduleName)
     if not os.path.isdir(os.path.join(output, extname)):
-        raise ValueError,
+        raise ValueError, \
             "%s directory not found, module %s needs to be compiled first" %(
                 os.path.join(output, extname), extname)