From 0183d6fea90ce04aa94f9f8fa431e35db8440998 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Mon, 7 Dec 2015 19:11:23 +0000 Subject: [PATCH] Don't include the binary msgpack in the thin tarball Refs https://github.com/saltstack/salt/issues/25654#issuecomment-162616147 --- salt/utils/thin.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/salt/utils/thin.py b/salt/utils/thin.py index aa0cc9e196..fdb6119b43 100644 --- a/salt/utils/thin.py +++ b/salt/utils/thin.py @@ -20,7 +20,6 @@ import jinja2 import yaml import salt.ext.six as six import tornado -import msgpack # pylint: disable=import-error,no-name-in-module try: @@ -109,7 +108,6 @@ def get_tops(extra_mods='', so_mods=''): os.path.dirname(jinja2.__file__), os.path.dirname(yaml.__file__), os.path.dirname(tornado.__file__), - os.path.dirname(msgpack.__file__) ] tops.append(six.__file__.replace('.pyc', '.py'))