From 09f3016b5c13e038ba3078aae76a8bcee06b7313 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Dec 17 2008 02:50:46 +0000 Subject: Fix mismatch between koji type and yum type that was causing false cache misses. --- diff --git a/mash/__init__.py b/mash/__init__.py index 11597fe..5aa060f 100644 --- a/mash/__init__.py +++ b/mash/__init__.py @@ -137,7 +137,7 @@ class Mash: if po.release != pkg['release']: return False if pkg['epoch']: - if po.epoch != pkg['epoch']: + if int(po.epoch) != pkg['epoch']: return False elif po.epoch != '0': return False