diff options
author | Tim Potter <tpot@samba.org> | 2002-09-10 06:41:27 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-09-10 06:41:27 +0000 |
commit | 3e19e3afdb6fd1f63dee9ca52a5d33090670832e (patch) | |
tree | faccf43f30bb922524a4c6191e882458c6ad6459 /source/python/examples/spoolss/psec.py | |
parent | b5227f0a645fdf2358fcb880f22e4662efdfe8e3 (diff) | |
download | samba-3e19e3afdb6fd1f63dee9ca52a5d33090670832e.tar.gz samba-3e19e3afdb6fd1f63dee9ca52a5d33090670832e.tar.xz samba-3e19e3afdb6fd1f63dee9ca52a5d33090670832e.zip |
Updated examples for new top level module layout.
Fixed some bugs also.
Diffstat (limited to 'source/python/examples/spoolss/psec.py')
-rwxr-xr-x | source/python/examples/spoolss/psec.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/python/examples/spoolss/psec.py b/source/python/examples/spoolss/psec.py index f3fdb7bccd6..498a0ef1744 100755 --- a/source/python/examples/spoolss/psec.py +++ b/source/python/examples/spoolss/psec.py @@ -3,7 +3,8 @@ # Get or set the security descriptor on a printer # -import sys, spoolss, re, string +import sys, re, string +from samba import spoolss if len(sys.argv) != 3: print "Usage: psec.py getsec|setsec printername" |