summaryrefslogtreecommitdiff
path: root/lib/tdb
diff options
context:
space:
mode:
authorJoe Guo <joeg@catalyst.net.nz>2018-12-12 13:41:58 +1300
committerNoel Power <npower@samba.org>2018-12-14 14:40:20 +0100
commita07279b78a83d7e62eb0c58a2ac989407a40fb6b (patch)
tree8c650eeff6a2e38d6776ba2ad67e79a2525b2667 /lib/tdb
parentc65a70781da987b4ea445b3ad79784b508170bf5 (diff)
downloadsamba-a07279b78a83d7e62eb0c58a2ac989407a40fb6b.tar.gz
PY3: change shebang to python3 in lib dir
Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Noel Power <npower@samba.org>
Diffstat (limited to 'lib/tdb')
-rw-r--r--lib/tdb/python/tdbdump.py2
-rw-r--r--lib/tdb/python/tests/simple.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/tdb/python/tdbdump.py b/lib/tdb/python/tdbdump.py
index 08769eaa3e5..306a950d28c 100644
--- a/lib/tdb/python/tdbdump.py
+++ b/lib/tdb/python/tdbdump.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# Trivial reimplementation of tdbdump in Python
from __future__ import print_function
diff --git a/lib/tdb/python/tests/simple.py b/lib/tdb/python/tests/simple.py
index 151807874ed..312d587fcde 100644
--- a/lib/tdb/python/tests/simple.py
+++ b/lib/tdb/python/tests/simple.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# Some simple tests for the Python bindings for TDB
# Note that this tests the interface of the Python bindings
# It does not test tdb itself.