diff --git a/AUTHORS b/AUTHORS
index 746b305..d20c371 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,7 +1,7 @@
-PRIMARY AUTHORS are and/or have been (alphabetic order):
+PRIMARY AUTHORS (alphabetic order):
* Findeisen, Johannes
- Main Developer since the first code line.
- github.com profile:
- openhub.net profile:
+ Main Developer and maintainer.
+ github.com:
+ git.unixpeople.org:
Homepage:
\ No newline at end of file
diff --git a/bin/uplink b/bin/uplink
index 316d964..84e0732 100755
--- a/bin/uplink
+++ b/bin/uplink
@@ -140,7 +140,7 @@ def main():
configuration.set_httpserver(True)
try:
- u = Uplink(configuration.get_pid_file(), configuration)
+ u = Uplink(configuration)
except Exception as err:
logger.error(str('[uplink] core error! {0}'.format(err)))
sys.exit(1)
diff --git a/uplink/uplink.py b/uplink/uplink.py
index 4847454..b2fc827 100644
--- a/uplink/uplink.py
+++ b/uplink/uplink.py
@@ -39,8 +39,8 @@ logger = getLogger('uplink')
class Uplink(Daemon):
- def __init__(self, pid_file, configuration):
- super().__init__(pid_file)
+ def __init__(self, configuration):
+ super().__init__(configuration.get_pid_file())
self.__configuration = configuration
def fetch_data(self, i):