Skip to content
Snippets Groups Projects
Commit 1e40f849 authored by Radoslaw Smigielski's avatar Radoslaw Smigielski
Browse files

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
parent 272709d5
No related branches found
No related tags found
No related merge requests found
...@@ -18,14 +18,15 @@ classifier = ...@@ -18,14 +18,15 @@ classifier =
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.5 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] [files]
packages = packages =
kayobe kayobe
data_files = data_files =
share/kayobe/ansible = ansible/* 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/ansible/roles = ansible/roles/*
share/kayobe/doc = doc/* share/kayobe/doc = doc/*
share/kayobe/etc_examples = etc/* share/kayobe/etc_examples = etc/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment