shakaran

light9 start

Jun 13th, 2012
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.92 KB | None | 0 0
  1. python curvecalc
  2. <type 'exceptions.OSError'>
  3. Python 2.7.3: /usr/bin/python
  4. Wed Jun 13 08:12:37 2012
  5.  
  6. A problem occurred in a Python script. Here is the sequence of
  7. function calls leading up to the error, in the order they occurred.
  8.  
  9. /home/shakaran/Documentos/Projects/light9/bin/curvecalc in <module>()
  10. 26 from light9 import showconfig, prof
  11. 27 from light9.curvecalc.curve import Curveset
  12. 28 from light9.curvecalc import curveview
  13. 29 from light9.curvecalc.musicaccess import Music, currentlyPlayingSong
  14. 30 from light9.wavelength import wavelength
  15. light9 undefined
  16. curveview undefined
  17.  
  18. /home/shakaran/Documentos/Projects/light9/light9/curvecalc/curveview.py in <module>()
  19. 6 from light9.curvecalc import cursors
  20. 7 from light9.curvecalc.curve import introPad, postPad
  21. 8 from light9.dmxchanedit import gradient
  22. 9
  23. 10 log = logging.getLogger()
  24. light9 undefined
  25. gradient undefined
  26.  
  27. /home/shakaran/Documentos/Projects/light9/light9/dmxchanedit.py in <module>()
  28. 7 from __future__ import nested_scopes,division
  29. 8 import Tkinter as tk
  30. 9 from light9 import Patch
  31. 10 from light9.uihelpers import make_frame, colorlabel, eventtoparent
  32. 11 import louie as dispatcher
  33. light9 undefined
  34. Patch undefined
  35.  
  36. /home/shakaran/Documentos/Projects/light9/light9/Patch.py in <module>()
  37. 68 reverse_patch[name] = norm_name
  38. 69
  39. 70 # importing patch will load initial data
  40. 71 reload_data()
  41. 72
  42. reload_data = None
  43.  
  44. /home/shakaran/Documentos/Projects/light9/light9/Patch.py in reload_data()
  45. 45 uri_patch = {}
  46. 46
  47. 47 graph = showconfig.getGraph()
  48. 48
  49. 49 for chan in graph.subjects(RDF.type, L9['Channel']):
  50. graph undefined
  51. global showconfig = None
  52. showconfig.getGraph undefined
  53.  
  54. /home/shakaran/Documentos/Projects/light9/light9/showconfig.py in getGraph()
  55. 9 def getGraph():
  56. 10 global _config
  57. 11 configPath = path.join(root(), 'config.n3')
  58. 12
  59. 13 # file patch.n3 mtime is not currently being checked
  60. configPath undefined
  61. global path = <module 'posixpath' from '/usr/lib/python2.7/posixpath.pyc'>
  62. path.join = <function join>
  63. global root = <function root>
  64.  
  65. /home/shakaran/Documentos/Projects/light9/light9/showconfig.py in root()
  66. 39 if r is None:
  67. 40 raise OSError(
  68. 41 "LIGHT9_SHOW env variable has not been set to the show root")
  69. 42 return r
  70. 43
  71.  
  72. <type 'exceptions.OSError'>: LIGHT9_SHOW env variable has not been set to the show root
  73. __class__ = <type 'exceptions.OSError'>
  74. __delattr__ = <method-wrapper '__delattr__' of exceptions.OSError object>
  75. __dict__ = {}
  76. __doc__ = 'OS system call failed.'
  77. __format__ = <built-in method __format__ of exceptions.OSError object>
  78. __getattribute__ = <method-wrapper '__getattribute__' of exceptions.OSError object>
  79. __getitem__ = <method-wrapper '__getitem__' of exceptions.OSError object>
  80. __getslice__ = <method-wrapper '__getslice__' of exceptions.OSError object>
  81. __hash__ = <method-wrapper '__hash__' of exceptions.OSError object>
  82. __init__ = <method-wrapper '__init__' of exceptions.OSError object>
  83. __new__ = <built-in method __new__ of type object>
  84. __reduce__ = <built-in method __reduce__ of exceptions.OSError object>
  85. __reduce_ex__ = <built-in method __reduce_ex__ of exceptions.OSError object>
  86. __repr__ = <method-wrapper '__repr__' of exceptions.OSError object>
  87. __setattr__ = <method-wrapper '__setattr__' of exceptions.OSError object>
  88. __setstate__ = <built-in method __setstate__ of exceptions.OSError object>
  89. __sizeof__ = <built-in method __sizeof__ of exceptions.OSError object>
  90. __str__ = <method-wrapper '__str__' of exceptions.OSError object>
  91. __subclasshook__ = <built-in method __subclasshook__ of type object>
  92. __unicode__ = <built-in method __unicode__ of exceptions.OSError object>
  93. args = ('LIGHT9_SHOW env variable has not been set to the show root',)
  94. errno = None
  95. filename = None
  96. message = 'LIGHT9_SHOW env variable has not been set to the show root'
  97. strerror = None
  98.  
  99. The above is a description of an error in a Python program. Here is
  100. the original traceback:
  101.  
  102. Traceback (most recent call last):
  103. File "curvecalc", line 28, in <module>
  104. from light9.curvecalc import curveview
  105. File "../light9/curvecalc/curveview.py", line 8, in <module>
  106. from light9.dmxchanedit import gradient
  107. File "../light9/dmxchanedit.py", line 9, in <module>
  108. from light9 import Patch
  109. File "../light9/Patch.py", line 71, in <module>
  110. reload_data()
  111. File "../light9/Patch.py", line 47, in reload_data
  112. graph = showconfig.getGraph()
  113. File "../light9/showconfig.py", line 11, in getGraph
  114. configPath = path.join(root(), 'config.n3')
  115. File "../light9/showconfig.py", line 41, in root
  116. "LIGHT9_SHOW env variable has not been set to the show root")
  117. OSError: LIGHT9_SHOW env variable has not been set to the show root
Advertisement
Add Comment
Please, Sign In to add comment