summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2011-03-19 11:48:31 +0100
committerMichael Biebl <biebl@debian.org>2011-03-29 01:00:47 +0200
commit530f143adf8d403572346f492ba36ae094761c0b (patch)
tree794c43b0137cb12e594b178255da3a3f011ebea1
parentb8a1a3864005307929632d77575bcde92b3354c5 (diff)
downloadNetworkManager-530f143adf8d403572346f492ba36ae094761c0b.tar.gz
use /usr/bin/env instead of /bin/env
-rwxr-xr-xexamples/python/add-system-connection.py2
-rwxr-xr-xexamples/python/add-system-wifi-connection.py2
-rwxr-xr-xexamples/python/disconnect-device.py2
-rw-r--r--examples/python/list-connections.py2
-rw-r--r--examples/python/nm-state.py2
-rw-r--r--examples/python/show-bssids.py2
-rwxr-xr-xexamples/python/update-secrets.py2
-rw-r--r--examples/python/vpn.py2
-rwxr-xr-xlibnm-glib/tests/test-remote-settings-service.py2
-rwxr-xr-xsrc/tests/test-secret-agent.py2
-rwxr-xr-xtest/add-connection.py2
-rwxr-xr-xtest/set-hostname.py2
12 files changed, 12 insertions, 12 deletions
diff --git a/examples/python/add-system-connection.py b/examples/python/add-system-connection.py
index d508e8c6eb..f55d0df0b9 100755
--- a/examples/python/add-system-connection.py
+++ b/examples/python/add-system-connection.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/examples/python/add-system-wifi-connection.py b/examples/python/add-system-wifi-connection.py
index b9eca91802..ff3908217d 100755
--- a/examples/python/add-system-wifi-connection.py
+++ b/examples/python/add-system-wifi-connection.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/examples/python/disconnect-device.py b/examples/python/disconnect-device.py
index f885495140..85afa97ba6 100755
--- a/examples/python/disconnect-device.py
+++ b/examples/python/disconnect-device.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
#
# This program is free software; you can redistribute it and/or modify
diff --git a/examples/python/list-connections.py b/examples/python/list-connections.py
index 9c3e1771c6..6e2050e557 100644
--- a/examples/python/list-connections.py
+++ b/examples/python/list-connections.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/examples/python/nm-state.py b/examples/python/nm-state.py
index 051e8ce087..a79b340595 100644
--- a/examples/python/nm-state.py
+++ b/examples/python/nm-state.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/examples/python/show-bssids.py b/examples/python/show-bssids.py
index 5d8778c731..505e3d35c7 100644
--- a/examples/python/show-bssids.py
+++ b/examples/python/show-bssids.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/examples/python/update-secrets.py b/examples/python/update-secrets.py
index e0ccb27902..86abae2448 100755
--- a/examples/python/update-secrets.py
+++ b/examples/python/update-secrets.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/examples/python/vpn.py b/examples/python/vpn.py
index 7e3e19f378..59773a61fb 100644
--- a/examples/python/vpn.py
+++ b/examples/python/vpn.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/libnm-glib/tests/test-remote-settings-service.py b/libnm-glib/tests/test-remote-settings-service.py
index e6bd798f92..8654200550 100755
--- a/libnm-glib/tests/test-remote-settings-service.py
+++ b/libnm-glib/tests/test-remote-settings-service.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
import glib
diff --git a/src/tests/test-secret-agent.py b/src/tests/test-secret-agent.py
index 6b9e676b3d..3b21c610a6 100755
--- a/src/tests/test-secret-agent.py
+++ b/src/tests/test-secret-agent.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
import glib
diff --git a/test/add-connection.py b/test/add-connection.py
index 817d6914c8..4458824417 100755
--- a/test/add-connection.py
+++ b/test/add-connection.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/test/set-hostname.py b/test/set-hostname.py
index 4c8995d255..283db367b7 100755
--- a/test/set-hostname.py
+++ b/test/set-hostname.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by