/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pywrap/pcilib.py

  • Committer: Suren A. Chilingaryan
  • Date: 2016-03-04 18:30:43 UTC
  • mfrom: (346.1.39 pcitool)
  • Revision ID: csa@suren.me-20160304183043-mjf6xvyermjh5olg
Integrate last part of Python code from Vasiliy Chernov

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
         curr_script['name'] = script
29
29
         if 'description' in dir(s.__scipts[script]):
30
30
            curr_script['description'] = s.__scipts[script].description
 
31
         if 'run' in dir(s.__scipts[script]):
 
32
            curr_script['valid'] = True
31
33
         scripts.append(curr_script)
32
34
      return scripts
33
35