aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp
diff options
context:
space:
mode:
Diffstat (limited to 'gbp')
-rw-r--r--gbp/deb.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/gbp/deb.py b/gbp/deb.py
index 7261134b..1d4a3981 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"