diff options
author | Guido Günther <agx@sigxcpu.org> | 2009-08-22 14:08:29 +0200 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2009-08-23 17:28:41 +0200 |
commit | 715d42a8dbbe0f78076bd5ab486b9c933d4f35e7 (patch) | |
tree | 8b640090f13e316f39f1d73333d75e9fd46c7f97 /git-dch | |
parent | 29cacc0286b1bd0af964fea71a889f44525f838f (diff) | |
download | git-buildpackage-715d42a8dbbe0f78076bd5ab486b9c933d4f35e7.tar.gz git-buildpackage-715d42a8dbbe0f78076bd5ab486b9c933d4f35e7.tar.bz2 git-buildpackage-715d42a8dbbe0f78076bd5ab486b9c933d4f35e7.zip |
drop superfluous _utils from module names
Diffstat (limited to 'git-dch')
-rwxr-xr-x | git-dch | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -24,10 +24,10 @@ import os.path import shutil import subprocess import gbp.command_wrappers as gbpc -from gbp.git_utils import (GitRepositoryError, GitRepository, build_tag) +from gbp.git import (GitRepositoryError, GitRepository, build_tag) from gbp.config import GbpOptionParser, GbpOptionGroup from gbp.errors import GbpError -from gbp.deb_utils import parse_changelog +from gbp.deb import parse_changelog from gbp.command_wrappers import (Command, CommandExecFailed) snapshot_re = re.compile("\s*\*\* SNAPSHOT build @(?P<commit>[a-z0-9]+)\s+\*\*") |