Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #2574
| From | "R. Tyler Croy" <tyler@linux.com> |
|---|---|
| Subject | Re: Newbie -> NameError: getopt |
| Newsgroups | comp.lang.python |
| References | <mailman.1.1301919295.9059.python-list@python.org> |
| Date | 2011-04-04 16:24 +0000 |
| Message-ID | <4d99f0c8$0$22174$742ec2ed@news.sonic.net> (permalink) |
| Organization | Sonic.Net |
On Mon, 04 Apr 2011 05:14:46 -0700, Mustafa Cayci wrote:
> 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.
Try bringing your imports up out of the "if __name__" block. Where you are
referencing getopt (the main() function), the getopt module hasn't yet
been imported.
You can do something like this:
import getopt
def main():
# ...
--
- R. Tyler Croy
--------------------------------------
Code: http://github.com/rtyler
Back to comp.lang.python | Previous | Next — Previous 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