Show
Ignore:
Timestamp:
08/11/08 19:47:56 (2 years ago)
Author:
Nicolas ?vrard <nicoe@…>
Branch:
default
Message:

Added chart reporting using YAML pilot files

  • Using PyCha? to draw charts
  • Using YAML files to create the instructions sent to PyCha?
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • relatorio/reporting.py

    r51 r54  
    8787            try: 
    8888                engine = entrypoint.load() 
    89                 cls.add_factory(entrypoint.name, engine) 
     89                if hasattr(engine, 'id_function'): 
     90                    cls.add_factory(entrypoint.name, engine, engine.id_function) 
     91                else: 
     92                    cls.add_factory(entrypoint.name, engine) 
    9093            except ImportError: 
    9194                warnings.warn('We were not able to load %s. You will not '