From 56996812a9753fcf94117fd8c37eee60debeaf87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Legan=C3=A9s=20Combarro=20=22Piranna=22?= Date: Sat, 2 Jun 2012 00:37:11 +0200 Subject: Renamed function --- sqlparse/engine/grouping.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sqlparse/engine') diff --git a/sqlparse/engine/grouping.py b/sqlparse/engine/grouping.py index bab932d..046ec9b 100644 --- a/sqlparse/engine/grouping.py +++ b/sqlparse/engine/grouping.py @@ -205,7 +205,7 @@ def group_identifier_list(tlist): lambda t: isinstance(t, sql.Comment), ] - def group(start, after): + def group_identifierlist(start, after): """ Create and group the identifiers list """ @@ -247,7 +247,7 @@ def group_identifier_list(tlist): # Reached the end of the list # Create and group the identifiers list - tcomma = group(start, after) + tcomma = group_identifierlist(start, after) # Skip ahead to next "," start = None @@ -256,7 +256,7 @@ def group_identifier_list(tlist): # There's an open identifier list, create and group the identifiers list if start: - group(start, after) + group_identifierlist(start, after) def group_parenthesis(tlist): -- cgit v1.2.1