Tone down previous commit a little.
authorCarl Hetherington <cth@carlh.net>
Wed, 3 Feb 2021 09:07:28 +0000 (10:07 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 3 Feb 2021 09:07:28 +0000 (10:07 +0100)
cdist

diff --git a/cdist b/cdist
index 5abc82e501468e08f5ef34d1f3386296cd94d465..3db86374b94001c65125d21d5a3f2e88e43a9a2f 100755 (executable)
--- a/cdist
+++ b/cdist
@@ -754,9 +754,8 @@ def notarize_dmg(dmg, bundle_id):
     for i in range(0, 30):
         print('%s: checking up on %s' % (datetime.datetime.now(), request_uuid))
         p = subprocess.run(['xcrun', 'altool', '--notarization-info', request_uuid, '-u', config.get('apple_id'), '-p', config.get('apple_password'), '--output-format', 'xml'], capture_output=True)
-        print('%s: %s' % (datetime.datetime.now(), p))
         status = string_after(p, 'Status')
-        print('Got status: %s' % status)
+        print('%s: got status %s' % (datetime.datetime.now(), status))
         if status == 'invalid':
             raise Error("Notarization failed")
         elif status == 'success':