473,699 Members | 2,361 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

UnboundLocalErr or: local variable 'additional_inf o' referenced before assignment

1 New Member
How can I fix it ???

Expand|Select|Wrap|Line Numbers
  1. snmp_actions_table = 'snmp_actions'
  2.         action='precondition' + oid_name
  3.         additional_info = self.config.get_campaign()      
  4.         if self.val != expected:
  5.             result='N'
  6.         #print 'oid_name = ', oid_name
  7.             if oid_name == "MT120_SW_mt120SwTableStatus" :
  8.                 states_download_mt120=["Idle","Downloading","Downloaded","Abort_downloaded"]
  9.                 val8888_mt120_swr='Empty field'
  10.                 if expected == 8888 :
  11.                     additional_info='precondition  check failed , expected ' + val8888_mt120_swr + ' found ' +  states_download_mt120[self.val]
  12.                 else:
  13.                      additional_info='precondition  check failed , expected ' + states_download_mt120[expected] + ' found ' +  states_download_mt120[self.val]
  14.             elif oid_name == "associatedBsc.Table.1.mt120ReplacementStatus" :
  15.                states_mt120_swr=["Idle","Preloading","Preloaded","Abort_Preloaded","Activating","Activated","Accepting","Rejecting"]
  16.                 val8888_mt120sw='Empty field' 
  17.                 if expected == 8888 :
  18.                     additional_info='precondition  check failed , expected ' + val8888_mt120sw +  ' found ' +  states_mt120_swr[self.val]
  19.                 else:  
  20.                     additional_info='precondition  check failed , expected ' + states_mt120_swr[expected] + ' found ' +  states_mt120_swr[self.val]
  21.             elif oid_name == "softwareManagement.swReplacementStatus":
  22.     #    print 'In if de la tcif '
  23.                 states_tcif_swr=["Idle","Downloading","Downloaded","Activating","Activated","Accepting","Aborting","Rejecting"]
  24.                 additional_info='precondition  check failed , expected ' + states_tcif_swr[expected] + ' found ' +  states_tcif_swr[self.val]
  25.             print 'Dupa if '
  26.             self.result='NOK'
  27.         else:
  28.             result = 'P'
  29.             additional_info='precondition ok'
  30.             if self.result == 'NONE':
  31.                 self.result = 'OK'
  32.         #self.test_logger.LogAction(snmp_actions_table,action,result,additional_info)
  33.         end_time = strftime("%H:%M:%S")
  34.         self.test_logger.LogAction(snmp_actions_table,action,result,additional_info,start_time,end_time)
  35.         test_id = self.test_logger.getTestId()
  36.         self.test_logger.UpdateResult('snmp_test',test_id,self.result)
  37.         self.assertEqual(self.val, expected,'precondition check failed')
Jul 23 '12 #1
1 2741
dwblas
626 Recognized Expert Contributor
"referenced before assignment" means that the variable has not yet been declared. I will leave it to you to learn how to Google for the error message as these very simple error messages are already explained on many sites. If you don't already know, there are many beginner tutorials available http://wiki.python.org/moin/Beginner...NonProgrammers
Jul 27 '12 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

7
2651
by: NS Develop | last post by:
What's wrong with the following: void SomeClass::someMethod(void) { A *ptrA = NULL; ptrA = &A(); .... }
166
8620
by: Graham | last post by:
This has to do with class variables and instances variables. Given the following: <code> class _class: var = 0 #rest of the class
7
3148
by: Edward Yang | last post by:
A few days ago I started a thread "I think C# is forcing us to write more (redundant) code" and got many replies (more than what I had expected). But after reading all the replies I think my question about local variable initialization is still not solved. And some of the replies forked into talking about out parameters. And the thread is becoming way too deep. So I open a new thread here. My question in the previous thead has turned...
2
5024
by: silverburgh.meryl | last post by:
Can you please tell me what is the meaning this error in general? UnboundLocalError: local variable 'colorIndex' referenced before assignment In my python script, I have a variable define and init to 0, like this colorIndex = 0 and in one of my functions, I increment it by 1
22
8416
by: Laura T. | last post by:
In the following example, c# 2.0 compiler says that a3 and ret are used before assigned. as far as I can see, definite assignment is made. If I add finally { ret = true; a3 = "b3";
9
17199
by: Pete Bartonly | last post by:
Quick question, probably quite a simple matter. Take the follow start of a method: def review(filesNeedingReview): for item in filesNeedingReview: (tightestOwner, logMsg) = item if (logMsg != None):
2
1737
by: Wang, Harry | last post by:
$$ TestCase ID : 001 Step : deleteDvc,206268 Result Eval type : XmlChk Step : deleteDvc,206269 Result Eval type : XmlChk Traceback (most recent call last): File "C:\UDR2\UDRxmlGateway.py", line 388, in <module> ParseAll() File "C:\UDR2\UDRxmlGateway.py", line 371, in ParseAll if (PfFlag == 1):
1
6573
by: nongnaeja | last post by:
I don't know ,why it's error This my code from PIL import Image def ch_red(tmp): R = tmp G = tmp B = tmp
1
9542
by: laxad | last post by:
Hi guys, I am using django for my webapplication which is based in python. When I am submitting a form, using views.py wihch is def cvdetails(request, id): cvdb = get_object_or_404(cvdb, id=id) <-- error happening here if request.method == 'POST':
0
8628
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9054
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7785
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6550
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5884
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4391
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3075
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2362
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2016
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.