aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/scripts
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-12-24 11:09:48 +0100
committerGuido Günther <agx@sigxcpu.org>2011-12-26 13:59:51 +0100
commitee9748eee0d05178effcdd0a40702615a4ac461a (patch)
tree496487680061701825394ad3f8ffc562b08c85eb /gbp/scripts
parent58978c5248c7410f3f244af4a8dbbd97a5ca25ff (diff)
pq: rename PatchQueue to PatchSeries
since this models a quilt patch series
Diffstat (limited to 'gbp/scripts')
-rw-r--r--gbp/scripts/pq.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/scripts/pq.py b/gbp/scripts/pq.py
index e8e9497e..4dee07ce 100644
--- a/gbp/scripts/pq.py
+++ b/gbp/scripts/pq.py
@@ -30,7 +30,7 @@ from gbp.command_wrappers import (Command, GitCommand, RunAtCommand,
CommandExecFailed)
from gbp.errors import GbpError
import gbp.log
-from gbp.pq import PatchQueue
+from gbp.pq import PatchSeries
PQ_BRANCH_PREFIX = "patch-queue/"
PATCH_DIR = "debian/patches/"
@@ -221,7 +221,7 @@ def import_quilt_patches(repo, branch, series, tries, force):
if len(commits) > 1:
tmpdir, series = safe_patches(series)
- queue = PatchQueue.read_series_file(series)
+ queue = PatchSeries.read_series_file(series)
for commit in commits:
try:
gbp.log.info("Trying to apply patches at '%s'" % commit)