diff options
author | Jose M. Guisado <jguisado@soleta.eu> | 2020-11-04 12:48:53 +0000 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-11-06 12:05:56 +0100 |
commit | 29d3d06a9c1cf74497f86be95ed626a03e0af32b (patch) | |
tree | b7d3f405e948f04294e9c8a4523fa332de3a754e | |
parent | b138fbc0db906f790b984ee520e9175b2ea974f2 (diff) |
Fix license name in setup.py
The file containing the license was being referred as LICENSE when it
was renamed to COPYING.
Fixes: 173fabb ("Rename LICENSE to COPYING")
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,5 +9,5 @@ setup(name='ogclient', packages=['src', 'src.linux', 'src.virtual'], scripts=['ogclient'], data_files=[('cfg', ['cfg/ogclient.json']), - ('', ['LICENSE'])] + ('', ['COPYING'])] ) |