aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gbp/patch_series.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gbp/patch_series.py b/gbp/patch_series.py
index c70809d..dc8d24c 100644
--- a/gbp/patch_series.py
+++ b/gbp/patch_series.py
@@ -186,9 +186,10 @@ class PatchSeries(list):
"""
Read patch series
- >>> PatchSeries._read_series(['a/b', \
- 'a -p1', \
- 'a/b -p2'], '.') # doctest:+NORMALIZE_WHITESPACE
+ >>> PatchSeries._read_series(['a/b',
+ ... 'a -p1',
+ ... 'a/b -p2'], '.')
+ ... # doctest:+NORMALIZE_WHITESPACE
[<gbp.patch_series.Patch path='./a/b' topic='a' >,
<gbp.patch_series.Patch path='./a' strip=1 >,
<gbp.patch_series.Patch path='./a/b' topic='a' strip=2 >]
@@ -201,7 +202,6 @@ class PatchSeries(list):
@param patch_dir: path prefix to prepend to each patch path
@type patch_dir: string
"""
-
queue = PatchSeries()
for line in series:
try: