Skip to content

Commit bcee86c

Browse files
committed
updated error message.
1 parent 75fe7c6 commit bcee86c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Quest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def getQueryListArity( self, queryList, table ) :
233233
if all( a == arityList[0] for a in arityList ) :
234234
arity = arityList[0]
235235
else :
236-
sys.exit( "ERROR : edb definitions for table '" + str( table ) + "' have inconsistent arities : " + str( arityList ) )
236+
sys.exit( "ERROR : schema definitions for table '" + str( table ) + "' have inconsistent arities : " + str( arityList ) )
237237

238238
# make sure arity is an integer
239239
if not arity == math.floor( arity ) :

0 commit comments

Comments
 (0)