From fc07247c48439ea9ccbe94e47ec7278033987d0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20=27ftiff=27=20Levaux-Tiffreau?= Date: Thu, 25 Aug 2016 14:49:45 +0200 Subject: [PATCH] Fix an incompatibilty with kennethreitz/requests v2.11.1 https://github.com/kennethreitz/requests/commit/2669ab797ce769ecedf5493b04cb976f33e37210 --- jss/distribution_point.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jss/distribution_point.py b/jss/distribution_point.py index 55e258c..a2eb4cd 100644 --- a/jss/distribution_point.py +++ b/jss/distribution_point.py @@ -39,10 +39,10 @@ from .tools import (is_osx, is_linux, is_package) -PKG_FILE_TYPE = 0 -EBOOK_FILE_TYPE = 1 -IN_HOUSE_APP_FILE_TYPE = 2 -SCRIPT_FILE_TYPE = 3 +PKG_FILE_TYPE = '0' +EBOOK_FILE_TYPE = '1' +IN_HOUSE_APP_FILE_TYPE = '2' +SCRIPT_FILE_TYPE = '3' def auto_mounter(original):