--- a/rql/__init__.py Wed Feb 13 17:08:31 2019 +0100
+++ b/rql/__init__.py Wed Feb 13 17:11:31 2019 +0100
@@ -248,7 +248,7 @@
raise exc
except NoMoreTokens:
msg = 'Could not complete parsing; stopped around here: \n%s'
- exc = RQLSyntaxError(msg % parser._scanner)
+ exc = RQLSyntaxError(msg % parser._scanner)
exc.__traceback__ = sys.exc_info()[-1]
raise exc
--- a/test/unittest_analyze.py Wed Feb 13 17:08:31 2019 +0100
+++ b/test/unittest_analyze.py Wed Feb 13 17:11:31 2019 +0100
@@ -91,7 +91,7 @@
'Eetype', 'Person', 'Company', 'Address', 'Student']:
self._types[etype] = EntitySchema(etype)
self._types['Person']._specialized_by = [self._types['Student']]
- self._relations = {
+ self._relations = {
'eid' : RelationSchema((('Person', ('Int',)),
('Student', ('Int',)),
('Company', ('Int',)),