From 8da98dae6713013c4b3eaed627f8053eb0eb490e Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Tue, 27 Sep 2011 23:40:22 +0200 Subject: gbp-pq: don't fail on missing series file but create an empty branch instead --- gbp/pq.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gbp/pq.py b/gbp/pq.py index b8d62a1c..9ffe77a1 100644 --- a/gbp/pq.py +++ b/gbp/pq.py @@ -55,6 +55,10 @@ class PatchQueue(list): def read_series_file(klass, seriesfile): """Read a series file into L{Patch} objects""" patch_dir = os.path.dirname(seriesfile) + + if not os.path.exists(seriesfile): + return [] + try: s = file(seriesfile) except Exception, err: -- cgit v1.2.3