mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 08:34:40 +01:00
Bug fix - TypeError list str
fix install error of package_data TypeError: Can't convert 'list' object to str implicitly
This commit is contained in:
parent
ae931b2532
commit
5875e14329
1 changed files with 1 additions and 1 deletions
|
@ -17,6 +17,6 @@ setup(name='opensnitch-ui',
|
|||
license='GPL',
|
||||
packages=find_packages(),
|
||||
include_package_data = True,
|
||||
package_data={'': '*.*'},
|
||||
package_data={'': ['*.*']},
|
||||
scripts = [ 'bin/opensnitch-ui' ],
|
||||
zip_safe=False)
|
||||
|
|
Loading…
Add table
Reference in a new issue