diff options
author | Guido Günther <agx@sigxcpu.org> | 2012-09-19 22:28:56 +0200 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2012-10-25 18:59:22 +0200 |
commit | 38788670ee6e44375da3ff2eb253f50c8853023e (patch) | |
tree | 952f17840897ddda437585c86ca63f8a05127fe3 /gbp/scripts/pq.py | |
parent | c3c2778e922ff070ad26ebbde2e41fb0d49ea9ea (diff) | |
download | git-buildpackage-38788670ee6e44375da3ff2eb253f50c8853023e.tar.gz git-buildpackage-38788670ee6e44375da3ff2eb253f50c8853023e.tar.bz2 git-buildpackage-38788670ee6e44375da3ff2eb253f50c8853023e.zip |
PEP-8 and pyflakes cleanups
Diffstat (limited to 'gbp/scripts/pq.py')
-rwxr-xr-x | gbp/scripts/pq.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gbp/scripts/pq.py b/gbp/scripts/pq.py index ed95e0f6..0118c27a 100755 --- a/gbp/scripts/pq.py +++ b/gbp/scripts/pq.py @@ -22,10 +22,9 @@ import os import shutil import sys import tempfile -from gbp.config import (GbpOptionParserDebian, GbpOptionGroup) +from gbp.config import GbpOptionParserDebian from gbp.git import (GitRepositoryError, GitRepository) -from gbp.command_wrappers import (Command, GitCommand, RunAtCommand, - CommandExecFailed) +from gbp.command_wrappers import (GitCommand, CommandExecFailed) from gbp.errors import GbpError import gbp.log from gbp.patch_series import (PatchSeries, Patch) |