aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-05-28 14:04:22 +0200
committerGuido Günther <agx@sigxcpu.org>2016-05-28 14:05:04 +0200
commit0cae8d7c767c27d38e48e65b77ee859c957a6999 (patch)
tree75120c54a70b44614a44f021384c609b7ecde10f
parentb4b7f9f1a91d8ca7944c24bbe77f64e628e98769 (diff)
Patch$eries: minor indentation cleanup
-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: