X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Futils.py;h=788bcd41eda0d44a008a516137f6513ed6ee7410;hb=83f868120d67c62349c628ee154885508bedc2b0;hp=457e093c823cc30610e7eccde28880e2bfd5145d;hpb=383fcee18cb81cfdd2467bedd4b9eb3481a52f91;p=dak.git diff --git a/daklib/utils.py b/daklib/utils.py index 457e093c..788bcd41 100755 --- a/daklib/utils.py +++ b/daklib/utils.py @@ -63,6 +63,8 @@ key_uid_email_cache = {} #: Cache for email addresses from gpg key uids known_hashes = [("sha1", apt_pkg.sha1sum, (1, 8)), ("sha256", apt_pkg.sha256sum, (1, 8))] #: hashes we accept for entries in .changes/.dsc +# Monkeypatch commands.getstatusoutput as it returns a "0" exit code in +# all situations under lenny's Python. import commands def dak_getstatusoutput(cmd): pipe = subprocess.Popen(cmd, shell=True, universal_newlines=True,