473,473 Members | 1,954 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

UnboundLocalError: local variable 'additional_info' 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 2733
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
by: NS Develop | last post by:
What's wrong with the following: void SomeClass::someMethod(void) { A *ptrA = NULL; ptrA = &A(); .... }
166
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
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...
2
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...
22
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
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...
2
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...
1
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
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 =...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
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,...
0
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...
0
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 ...
0
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...

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.