##// END OF EJS Templates
Bug en JRODataReader: El metodo run llamaba al metodo putData en vez de llamar al metodo getData
Miguel Valdez -
r177:36f249836898
parent child
Show More
@@ -225,7 +225,14 class JRODataIO:
225 blocksize = None
225 blocksize = None
226
226
227 def __init__(self):
227 def __init__(self):
228 pass
228
229 raise ValueError, "Not implemented"
230
231 def run(self):
232
233 raise ValueError, "Not implemented"
234
235
229
236
230 class JRODataReader(JRODataIO):
237 class JRODataReader(JRODataIO):
231
238
@@ -779,7 +786,7 class JRODataReader(JRODataIO):
779 self.setup(**kwargs)
786 self.setup(**kwargs)
780 self.__isConfig = True
787 self.__isConfig = True
781
788
782 self.putData()
789 self.getData()
783
790
784 class JRODataWriter(JRODataIO):
791 class JRODataWriter(JRODataIO):
785
792
General Comments 0
You need to be logged in to leave comments. Login now