Ignore:
Timestamp:
03/19/12 11:41:15 (13 years ago)
Author:
neise
Message:
included python -tt option. thus checking for tabs/spaces
File:
1 edited

Legend:

Unmodified
Added
Removed
  • fact/tools/pyscripts/pyfact/generator.py

    r12986 r13143  
    1 #!/usr/bin/python
     1#!/usr/bin/python -tt
    22#
    33# Dominik Neise, Werner Lustermann
     
    115115    return options
    116116   
    117 def plotter(signal, text):
     117def _plotter(signal, text):
    118118    x=range(len(signal))
    119119    ax = plt.plot(x, signal, 'b.', label='signal')
     
    129129    sig = myGenerator()
    130130    print myGenerator
    131     plotter(sig, myGenerator.option_str)   
     131    _plotter(sig, myGenerator.option_str)   
Note: See TracChangeset for help on using the changeset viewer.