Alon Bar-Lev has uploaded a new change for review.

Change subject: packaging: services: prepend pythonlib
......................................................................

packaging: services: prepend pythonlib

devenv should shadow default search path, so system library will not
shadow devenv.

Change-Id: I5383c6529e822d92593d2e915a76bc3b25855866
Signed-off-by: Alon Bar-Lev <alo...@redhat.com>
---
M packaging/services/ovirt-engine-notifier/config.py.in
M packaging/services/ovirt-engine/config.py.in
2 files changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/14/19814/1

diff --git a/packaging/services/ovirt-engine-notifier/config.py.in 
b/packaging/services/ovirt-engine-notifier/config.py.in
index 53c6f68..9749802 100644
--- a/packaging/services/ovirt-engine-notifier/config.py.in
+++ b/packaging/services/ovirt-engine-notifier/config.py.in
@@ -21,7 +21,7 @@
 
 import sys
 if DEV_PYTHON_DIR:
-    sys.path.append(DEV_PYTHON_DIR)
+    sys.path.insert(0, DEV_PYTHON_DIR)
 
 
 # vim: expandtab tabstop=4 shiftwidth=4
diff --git a/packaging/services/ovirt-engine/config.py.in 
b/packaging/services/ovirt-engine/config.py.in
index c8e07f2..d0c707e 100644
--- a/packaging/services/ovirt-engine/config.py.in
+++ b/packaging/services/ovirt-engine/config.py.in
@@ -19,7 +19,7 @@
 
 import sys
 if DEV_PYTHON_DIR:
-    sys.path.append(DEV_PYTHON_DIR)
+    sys.path.insert(0, DEV_PYTHON_DIR)
 
 
 # vim: expandtab tabstop=4 shiftwidth=4


-- 
To view, visit http://gerrit.ovirt.org/19814
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5383c6529e822d92593d2e915a76bc3b25855866
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Alon Bar-Lev <alo...@redhat.com>
_______________________________________________
Engine-patches mailing list
Engine-patches@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to