summaryrefslogtreecommitdiffstats
path: root/bin/lts-bts
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <pochu@debian.org>2020-08-13 11:47:12 +0200
committerEmilio Pozuelo Monfort <pochu@debian.org>2020-08-13 11:49:08 +0200
commitf815d2033d464c3838f07188b8aa0ce773b6e57b (patch)
treee11f5594ad35aa4b6d13c0624a667ee3d6ccd88e /bin/lts-bts
parent71313afc95839aafa97534d37995156f19eb2ce4 (diff)
De-duplicate setup_path
All the scripts in bin/ can share the definition. Also setup_paths.py calls setup_path so one just has to import that module before importing those from lib/python/. Additionally this helps some scripts work better under Python 3, as one variant of setup_paths that we had called string.rfind, which is not present there.
Diffstat (limited to 'bin/lts-bts')
-rwxr-xr-xbin/lts-bts7
1 files changed, 1 insertions, 6 deletions
diff --git a/bin/lts-bts b/bin/lts-bts
index da9365721c..d1a70b63c2 100755
--- a/bin/lts-bts
+++ b/bin/lts-bts
@@ -13,12 +13,7 @@ import warnings
from tracker_data import TrackerData
-def setup_path():
- dirname = os.path.dirname
- base = dirname(dirname(os.path.realpath(sys.argv[0])))
- sys.path.insert(0, os.path.join(base, "lib", "python"))
-
-setup_path()
+import setup_paths
import config
from jinja2 import Template

© 2014-2024 Faster IT GmbH | imprint | privacy policy