Guest User

Untitled

a guest
Oct 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. if landuse == 'Landuse1':
  2. if hyd == 'Fair':
  3. lut_file = r'C:/temp/lu1fair.txt'
  4. elif hyd == 'Good':
  5. lut_file = r'C:/temp/lu1good.txt'
  6. elif hyd == 'Poor':
  7. lut_file = r'C:/temp/lu1poor.txt'
  8.  
  9. if landuse == 'Landuse2':
  10. if hyd == 'Fair':
  11. lut_file = r'C:/temp/lu2fair.txt'
  12. elif hyd == 'Good':
  13. lut_file = r'C:/temp/lu2good.txt'
  14. elif hyd == 'Poor':
  15. lut_file = r'C:/temp/lu2poor.txt'
  16.  
  17. UnboundLocalError: local variable 'lut_file' referenced before assignment
Add Comment
Please, Sign In to add comment