Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #2562
| Date | 2011-04-04 05:14 -0700 |
|---|---|
| From | Mustafa Cayci <acayci@yahoo.com> |
| Subject | Newbie -> NameError: getopt |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1.1301919295.9059.python-list@python.org> (permalink) |
Hello,
I followed several postings in Google and came up with the beginning of the
following code:
During the execution, I am getting
Problem invoking WLST - Traceback (innermost last):
File "/home/oracle/wlsuserconfigfiles/./Health_Check_Servers.py", line 80, in
?
File "/home/oracle/wlsuserconfigfiles/./Health_Check_Servers.py", line 22, in
main
NameError: getopt
I thought I was importing the "getopt" as shown below.
Thanks for you help in advance,
Mustafa
#Conditionally import wlstModule only when script is executed with jython
if __name__ == '__main__':
from wlstModule import *#@UnusedWildImport
import sys
import os
from java.lang import System
import getopt
serverName = ''
portNumber = ''
ucf = ''
ukf = ''
adminURL = ''
protocolName = ''
portNumber = ''
def main(argv):
try:
opts, args = getopt.getopt(sys.argv[1:], "s:p:t:u:k:")
except getopt.GetoptError, err:
print str(err)
usage()
sys.exit(2)
...
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Newbie -> NameError: getopt Mustafa Cayci <acayci@yahoo.com> - 2011-04-04 05:14 -0700 Re: Newbie -> NameError: getopt "R. Tyler Croy" <tyler@linux.com> - 2011-04-04 16:24 +0000
csiph-web