From 1e40f8498ae223ba1e71a9e2a3899ef66c822efe Mon Sep 17 00:00:00 2001
From: Radoslaw Smigielski <radoslaw.smigielski@nokia.com>
Date: Wed, 1 May 2019 15:28:15 -0600
Subject: [PATCH] Fix setup.cfg syntax error, not allowed comment in files
 section

In [files] section of setup.cfg there is not allowed comment, which
breaks installation with setup.py.

Change-Id: I38fce0a6c155e4b7d2ff7a2535f18e8adc2566e9
Story: 2005546
Task: 30692
---
 setup.cfg | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/setup.cfg b/setup.cfg
index 872582e1..c0653013 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -18,14 +18,15 @@ classifier =
     Programming Language :: Python :: 3
     Programming Language :: Python :: 3.5
 
+# In below section we have to include the roles directory explicitly
+# to Workaround PBR bug:
+#     source prefix replaced globally, see:
+#     https://bugs.launchpad.net/pbr/+bug/1810804
 [files]
 packages =
     kayobe
 data_files =
     share/kayobe/ansible = ansible/*
-    # We have to include the roles directory explicitly to Workaround PBR bug:
-    # source prefix replaced globally, see:
-    # https://bugs.launchpad.net/pbr/+bug/1810804
     share/kayobe/ansible/roles = ansible/roles/*
     share/kayobe/doc = doc/*
     share/kayobe/etc_examples = etc/*
-- 
GitLab