source typo fixes pt2 (only on py3 merged code)

This commit is contained in:
Kunda
2017-02-27 19:18:00 -05:00
committed by wmayer
parent 06b10a4061
commit 0485edd560
33 changed files with 169 additions and 169 deletions

View File

@@ -127,7 +127,7 @@ class SELECT(object):
def get_allowed_basic_types(self):
''' if a select contains some subselect, goes down through the different
sublayers untill there is no more '''
sublayers until there is no more '''
b = []
_auth_types = self.get_allowed_types()
for _auth_type in _auth_types:

View File

@@ -130,7 +130,7 @@ class Part21Parser:
line = fp.readline()
if not line:
break
# there may be a multline definition. In this case, we read lines untill we found
# there may be a multline definition. In this case, we read lines until we found
# a ;
while (line.find(';') == -1): #its a multiline
line = line.replace("\n","").replace("\r","") + fp.readline()