diff options
author | Amitay Isaacs <amitay@gmail.com> | 2011-09-05 15:52:53 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-09-08 00:35:37 +0200 |
commit | 92169e9debd955bda8f9f776954b750812bdf519 (patch) | |
tree | a7c4fb1a27db07970f7c99b2a66f27ae60293638 /source4 | |
parent | 14664fac34bbf0b7b10551a7a781ef2caf1cf779 (diff) | |
download | samba-92169e9debd955bda8f9f776954b750812bdf519.tar.gz samba-92169e9debd955bda8f9f776954b750812bdf519.tar.bz2 samba-92169e9debd955bda8f9f776954b750812bdf519.zip |
s4-provision: exit is not imported directed, use sys.exit
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/setup/provision | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/setup/provision b/source4/setup/provision index 7140b2658b..37faafd812 100755 --- a/source4/setup/provision +++ b/source4/setup/provision @@ -256,4 +256,4 @@ try: useeadb=eadb, next_rid=opts.next_rid, lp=lp) except ProvisioningError, e: print str(e) - exit(1) + sys.exit(1) |