From 6f00f12fbb2f89aca71c06f08b2cb92bd259102a Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sat, 19 Mar 2011 14:41:54 +0100 Subject: gbp: simplify is_native() and add doctests Git-Dch: Ignore --- gbp/deb.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'gbp') diff --git a/gbp/deb.py b/gbp/deb.py index 7261134..1d4a398 100644 --- a/gbp/deb.py +++ b/gbp/deb.py @@ -282,12 +282,15 @@ def get_compression(orig_file): def has_epoch(cp): - """does the topmost version number contain an epoch""" - try: - if cp['Epoch']: - return True - except KeyError: - return False + """ + Does the topmost version number in the changelog contain an epoch + >>> has_epoch(dict(Epoch="1")) + True + >>> has_epoch(dict()) + False + """ + return cp.has_key("Epoch") + def has_orig(cp, compression, dir): "Check if orig.tar.gz exists in dir" -- cgit v1.2.3