summaryrefslogtreecommitdiffstats
path: root/python.d/python_modules
diff options
context:
space:
mode:
authorPaweł Krupa <pawel@krupa.net.pl>2018-09-30 01:36:42 +0200
committerCosta Tsaousis <costa@tsaousis.gr>2018-09-30 02:36:42 +0300
commitd536ba6a438b04166bd4c5337c9658e5d4c83ecb (patch)
treeeef8dc42a9938b835a3d7fe642c6d9b5c870a20c /python.d/python_modules
parent5e4b4417c2444331146378333103bc4abd047186 (diff)
fix spdx (#4327)
Diffstat (limited to 'python.d/python_modules')
-rw-r--r--python.d/python_modules/bases/FrameworkServices/ExecutableService.py2
-rw-r--r--python.d/python_modules/bases/FrameworkServices/LogService.py2
-rw-r--r--python.d/python_modules/bases/FrameworkServices/MySQLService.py2
-rw-r--r--python.d/python_modules/bases/FrameworkServices/SimpleService.py2
-rw-r--r--python.d/python_modules/bases/FrameworkServices/SocketService.py2
-rw-r--r--python.d/python_modules/bases/FrameworkServices/UrlService.py2
-rw-r--r--python.d/python_modules/bases/charts.py2
-rw-r--r--python.d/python_modules/bases/collection.py2
-rw-r--r--python.d/python_modules/bases/loaders.py2
-rw-r--r--python.d/python_modules/bases/loggers.py2
10 files changed, 10 insertions, 10 deletions
diff --git a/python.d/python_modules/bases/FrameworkServices/ExecutableService.py b/python.d/python_modules/bases/FrameworkServices/ExecutableService.py
index 625f643234..72f4553217 100644
--- a/python.d/python_modules/bases/FrameworkServices/ExecutableService.py
+++ b/python.d/python_modules/bases/FrameworkServices/ExecutableService.py
@@ -2,7 +2,7 @@
# Description:
# Author: Pawel Krupa (paulfantom)
# Author: Ilya Mashchenko (l2isbad)
-# SPDX-License-Identifier: GPL-3.0+
+# SPDX-License-Identifier: GPL-3.0-or-later
import os
diff --git a/python.d/python_modules/bases/FrameworkServices/LogService.py b/python.d/python_modules/bases/FrameworkServices/LogService.py
index 241598973d..5acfd73f8e 100644
--- a/python.d/python_modules/bases/FrameworkServices/LogService.py
+++ b/python.d/python_modules/bases/FrameworkServices/LogService.py
@@ -2,7 +2,7 @@
# Description:
# Author: Pawel Krupa (paulfantom)
# Author: Ilya Mashchenko (l2isbad)
-# SPDX-License-Identifier: GPL-3.0+
+# SPDX-License-Identifier: GPL-3.0-or-later
from glob import glob
import os
diff --git a/python.d/python_modules/bases/FrameworkServices/MySQLService.py b/python.d/python_modules/bases/FrameworkServices/MySQLService.py
index d72a97292c..53807e2c4e 100644
--- a/python.d/python_modules/bases/FrameworkServices/MySQLService.py
+++ b/python.d/python_modules/bases/FrameworkServices/MySQLService.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Ilya Mashchenko (l2isbad)
-# SPDX-License-Identifier: GPL-3.0+
+# SPDX-License-Identifier: GPL-3.0-or-later
from sys import exc_info
diff --git a/python.d/python_modules/bases/FrameworkServices/SimpleService.py b/python.d/python_modules/bases/FrameworkServices/SimpleService.py
index cf10e3f9a2..dd53fbc14a 100644
--- a/python.d/python_modules/bases/FrameworkServices/SimpleService.py
+++ b/python.d/python_modules/bases/FrameworkServices/SimpleService.py
@@ -2,7 +2,7 @@
# Description:
# Author: Pawel Krupa (paulfantom)
# Author: Ilya Mashchenko (l2isbad)
-# SPDX-License-Identifier: GPL-3.0+
+# SPDX-License-Identifier: GPL-3.0-or-later
from threading import Thread
from time import sleep
diff --git a/python.d/python_modules/bases/FrameworkServices/SocketService.py b/python.d/python_modules/bases/FrameworkServices/SocketService.py
index 63bb3201e5..137693c38e 100644
--- a/python.d/python_modules/bases/FrameworkServices/SocketService.py
+++ b/python.d/python_modules/bases/FrameworkServices/SocketService.py
@@ -2,7 +2,7 @@
# Description:
# Author: Pawel Krupa (paulfantom)
# Author: Ilya Mashchenko (l2isbad)
-# SPDX-License-Identifier: GPL-3.0+
+# SPDX-License-Identifier: GPL-3.0-or-later
import socket
diff --git a/python.d/python_modules/bases/FrameworkServices/UrlService.py b/python.d/python_modules/bases/FrameworkServices/UrlService.py
index 68f7e86e41..856f388515 100644
--- a/python.d/python_modules/bases/FrameworkServices/UrlService.py
+++ b/python.d/python_modules/bases/FrameworkServices/UrlService.py
@@ -2,7 +2,7 @@
# Description:
# Author: Pawel Krupa (paulfantom)
# Author: Ilya Mashchenko (l2isbad)
-# SPDX-License-Identifier: GPL-3.0+
+# SPDX-License-Identifier: GPL-3.0-or-later
import urllib3
diff --git a/python.d/python_modules/bases/charts.py b/python.d/python_modules/bases/charts.py
index 14b2bd562e..2963739ec3 100644
--- a/python.d/python_modules/bases/charts.py
+++ b/python.d/python_modules/bases/charts.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Ilya Mashchenko (l2isbad)
-# SPDX-License-Identifier: GPL-3.0+
+# SPDX-License-Identifier: GPL-3.0-or-later
from bases.collection import safe_print
diff --git a/python.d/python_modules/bases/collection.py b/python.d/python_modules/bases/collection.py
index d95124889c..479a3b6100 100644
--- a/python.d/python_modules/bases/collection.py
+++ b/python.d/python_modules/bases/collection.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Ilya Mashchenko (l2isbad)
-# SPDX-License-Identifier: GPL-3.0+
+# SPDX-License-Identifier: GPL-3.0-or-later
import os
diff --git a/python.d/python_modules/bases/loaders.py b/python.d/python_modules/bases/loaders.py
index 15a874ba1b..9eb268ce75 100644
--- a/python.d/python_modules/bases/loaders.py
+++ b/python.d/python_modules/bases/loaders.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Ilya Mashchenko (l2isbad)
-# SPDX-License-Identifier: GPL-3.0+
+# SPDX-License-Identifier: GPL-3.0-or-later
import types
diff --git a/python.d/python_modules/bases/loggers.py b/python.d/python_modules/bases/loggers.py
index 6ac1dd058a..39be77a794 100644
--- a/python.d/python_modules/bases/loggers.py
+++ b/python.d/python_modules/bases/loggers.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Ilya Mashchenko (l2isbad)
-# SPDX-License-Identifier: GPL-3.0+
+# SPDX-License-Identifier: GPL-3.0-or-later
import logging
import traceback