s/parseargs/parse_args

This commit is contained in:
Christophe Benz 2010-12-13 15:42:20 +01:00
commit 5bdd1540fe
9 changed files with 11 additions and 11 deletions

View file

@ -343,7 +343,7 @@ class ReplApplication(Cmd, BaseApplication):
except BackendNotFound, e:
logging.error(e)
def parseargs(self, line, nb, req_n=None):
def parse_args(self, line, nb, req_n=None):
if line.strip() == '':
# because ''.split() = ['']
args = []
@ -758,7 +758,7 @@ class ReplApplication(Cmd, BaseApplication):
* quiet is an alias for error
* default is an alias for warning
"""
args = self.parseargs(line, 1, 0)
args = self.parse_args(line, 1, 0)
levels = (('debug', logging.DEBUG),
('info', logging.INFO),
('warning', logging.WARNING),