From 4a8db7a62af7a7834c62d0e389ac4b2178fb44ce Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Mon, 13 Feb 2012 18:56:28 +0100 Subject: Rename GbpOptionParserCommon common to GbpOptionParser --- gbp/scripts/pull.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gbp/scripts/pull.py') diff --git a/gbp/scripts/pull.py b/gbp/scripts/pull.py index 9c6f2c5..d50ffc2 100755 --- a/gbp/scripts/pull.py +++ b/gbp/scripts/pull.py @@ -22,7 +22,7 @@ import sys import os, os.path from gbp.command_wrappers import (Command, CommandExecFailed) -from gbp.config import (GbpOptionParserCommon, GbpOptionGroup) +from gbp.config import (GbpOptionParser, GbpOptionGroup) from gbp.errors import GbpError from gbp.git import GitRepositoryError from gbp.deb.git import DebianGitRepository @@ -70,8 +70,8 @@ def fast_forward_branch(branch, repo, options): def main(argv): retval = 0 - parser = GbpOptionParserCommon(command=os.path.basename(argv[0]), prefix='', - usage='%prog [options] - safely update a repository from remote') + parser = GbpOptionParser(command=os.path.basename(argv[0]), prefix='', + usage='%prog [options] - safely update a repository from remote') branch_group = GbpOptionGroup(parser, "branch options", "branch update and layout options") parser.add_option_group(branch_group) branch_group.add_option("--force", action="store_true", dest="force", default=False, -- cgit v1.2.3