diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2020-07-27 10:02:19 +0000 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2020-07-31 13:21:08 +0000 |
commit | e97a5ce265f7e1d3380fab9c4132e2b002e8636c (patch) | |
tree | 416c4c60a339419d06b6ae165b9231c16fa44f45 /miss_htbt_service/mod/trapd_exit.py | |
parent | a9e77b57b3c1f326ddf6f29e2c89765344e53b99 (diff) |
Run in Python 3.8
Use image recommended by SECCOM
Issue-ID: DCAEGEN2-2292
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Change-Id: I8d77f150c9fe314bf26bac2c9fac7ebc9782c9d8
Diffstat (limited to 'miss_htbt_service/mod/trapd_exit.py')
-rw-r--r-- | miss_htbt_service/mod/trapd_exit.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/miss_htbt_service/mod/trapd_exit.py b/miss_htbt_service/mod/trapd_exit.py index b1bd68f..c741fe5 100644 --- a/miss_htbt_service/mod/trapd_exit.py +++ b/miss_htbt_service/mod/trapd_exit.py @@ -3,6 +3,7 @@ # ================================================================================ # Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved. # Copyright (c) 2019 Pantheon.tech. All rights reserved. +# Copyright 2020 Deutsche Telekom. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -27,7 +28,7 @@ __docformat__ = 'restructuredtext' import sys import os import string -from .trapd_runtime_pid import save_pid, rm_pid +from mod.trapd_runtime_pid import save_pid, rm_pid prog_name = os.path.basename(__file__) |