From 99f247afcb7ddc08edbf33373ffae96883ef2162 Mon Sep 17 00:00:00 2001 From: Philip Joseph Date: Thu, 22 Dec 2016 16:26:46 +0530 Subject: [PATCH] Minor fix for file mime difference in ubuntu Signed-off-by: Philip Joseph --- common/python/rift/mano/yang_translator/shell.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/python/rift/mano/yang_translator/shell.py b/common/python/rift/mano/yang_translator/shell.py index f353e922..915cd6c5 100644 --- a/common/python/rift/mano/yang_translator/shell.py +++ b/common/python/rift/mano/yang_translator/shell.py @@ -149,7 +149,9 @@ class TranslatorShell(object): if typ.startswith('text/plain'): # Assume to be yaml return self.YAML - elif typ.startswith('application/x-gzip'): + # On Fedora 20, it return x-gzip, while on Ubuntu 16 it is gzip + elif typ.startswith('application/x-gzip') or \ + typ.startswith('application/gzip') : return self.TAR else: msg = _("The file {0} is not a supported type: {1}"). \ -- 2.25.1