From cc5e4d5568f0b0baeaa0f124905ea9c6f1a32d2a Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Tue, 24 Jan 2017 18:52:38 +0200
Subject: [PATCH] - Fix warning on normalizing the version in setup.py.

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 20c081f..89e665f 100644
--- a/setup.py
+++ b/setup.py
@@ -6,6 +6,6 @@ setup(
         url='https://www.shore.co.il/git/ansible-pre-commit',
         author='Nimrod Adar',
         author_email='nimrod@shore.co.il',
-        version=open('VERSION', 'r').read(),
+        version=open('VERSION', 'r').read().strip(),
         install_requires=['ansible==2.2.1.0'],
 )
-- 
GitLab