Skip to content
Snippets Groups Projects
Commit 27d0cba7 authored by Sven Mäder's avatar Sven Mäder :speech_balloon:
Browse files

Disable debugging code

parent eb09563b
No related branches found
No related tags found
1 merge request!4Disable debugging code
...@@ -54,6 +54,7 @@ apt install libkrb5-dev # required for `gssapi` module ...@@ -54,6 +54,7 @@ apt install libkrb5-dev # required for `gssapi` module
``` ```
python3 -m venv venv python3 -m venv venv
source venv/bin/activate source venv/bin/activate
pip3 install --upgrade pip
pip3 install -r requirements-git.txt -t lib/git pip3 install -r requirements-git.txt -t lib/git
pip3 install -r requirements-pip.txt -t lib/pip pip3 install -r requirements-pip.txt -t lib/pip
deactivate deactivate
......
...@@ -3,16 +3,16 @@ ...@@ -3,16 +3,16 @@
import os import os
import sys import sys
print('__file__: ' + __file__) #print('__file__: ' + __file__)
script_path = os.path.dirname(os.path.realpath(__file__)) script_path = os.path.dirname(os.path.realpath(__file__))
print('script_path: ' + script_path) #print('script_path: ' + script_path)
lib_path = os.path.abspath('/'.join([script_path, '..'])) lib_path = os.path.abspath('/'.join([script_path, '..']))
print('lib_path: ' + lib_path) #print('lib_path: ' + lib_path)
sys.path.insert(0, lib_path) sys.path.insert(0, lib_path)
print('sys.path: ') #print('sys.path: ')
for path in sys.path: #for path in sys.path:
print(' ' * 4 + path) # print(' ' * 4 + path)
...@@ -3,10 +3,10 @@ ...@@ -3,10 +3,10 @@
import os import os
import sys import sys
print('__file__: ' + __file__) #print('__file__: ' + __file__)
lib_path = os.path.dirname(os.path.realpath(__file__)) lib_path = os.path.dirname(os.path.realpath(__file__))
print('lib_path: ' + lib_path) #print('lib_path: ' + lib_path)
lib_pip = '/'.join([lib_path, 'pip']) lib_pip = '/'.join([lib_path, 'pip'])
lib_git = '/'.join([lib_path, 'git']) lib_git = '/'.join([lib_path, 'git'])
...@@ -16,6 +16,6 @@ sys.path.insert(0, lib_pip) ...@@ -16,6 +16,6 @@ sys.path.insert(0, lib_pip)
sys.path.insert(0, lib_git) sys.path.insert(0, lib_git)
sys.path.insert(0, lib_isg) sys.path.insert(0, lib_isg)
print('sys.path: ') #print('sys.path: ')
for path in sys.path: #for path in sys.path:
print(' ' * 4 + path) # print(' ' * 4 + path)
...@@ -3,16 +3,16 @@ ...@@ -3,16 +3,16 @@
import os import os
import sys import sys
print('__file__: ' + __file__) #print('__file__: ' + __file__)
script_path = os.path.dirname(os.path.realpath(__file__)) script_path = os.path.dirname(os.path.realpath(__file__))
print('script_path: ' + script_path) #print('script_path: ' + script_path)
lib_path = os.path.abspath('/'.join([script_path, '../..'])) lib_path = os.path.abspath('/'.join([script_path, '../..']))
print('lib_path: ' + lib_path) #print('lib_path: ' + lib_path)
sys.path.insert(0, lib_path) sys.path.insert(0, lib_path)
print('sys.path: ') #print('sys.path: ')
for path in sys.path: #for path in sys.path:
print(' ' * 4 + path) ## print(' ' * 4 + path)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment