summaryrefslogtreecommitdiff
path: root/source4/setup/setpassword
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-05-22 01:47:36 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-05-22 01:47:36 +0200
commit84a3290c8f0adf1248e61ab9f6c88bcfd4650375 (patch)
treefd36f953a2c33004c14e61447d70574e8bf0ba29 /source4/setup/setpassword
parent7e3367704799a2279f125104c762886a1c257535 (diff)
downloadsamba-84a3290c8f0adf1248e61ab9f6c88bcfd4650375.tar.gz
samba-84a3290c8f0adf1248e61ab9f6c88bcfd4650375.tar.bz2
samba-84a3290c8f0adf1248e61ab9f6c88bcfd4650375.zip
Fix python imports.
(This used to be commit 453206665677821b254c18cc67192e007b892f04)
Diffstat (limited to 'source4/setup/setpassword')
-rw-r--r--source4/setup/setpassword7
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/setup/setpassword b/source4/setup/setpassword
index 977a6a5ee8..65770e1f4d 100644
--- a/source4/setup/setpassword
+++ b/source4/setup/setpassword
@@ -6,12 +6,17 @@
# Released under the GNU GPL version 3 or later
#
+import os, sys
+
+# Find right directory when running from source tree
+sys.path.insert(0, "bin/python")
+
import samba.getopt as options
import optparse
import pwd
import sys
from getpass import getpass
-from auth import system_session
+from samba.auth import system_session
from samba.samdb import SamDB
parser = optparse.OptionParser("setpassword [username] [options]")