| 25 | | parser.add_option('-c', '--conf', |
|---|
| 26 | | action='store', type='str', dest='config', default='', |
|---|
| 27 | | help='Path to configuration file. If not provided please ensure ' + \ |
|---|
| 28 | | 'relevant environment variable is set.' |
|---|
| 29 | | ) |
|---|
| | 25 | # todo: fix this, which breaks optparse v1.4.1: |
|---|
| | 26 | # optparse.OptionError: option -c/--conf: invalid option type: 'str' |
|---|
| | 27 | #parser.add_option('-c', '--conf', |
|---|
| | 28 | # action='store', type='str', dest='config', default='', |
|---|
| | 29 | # help='Path to configuration file. If not provided please ensure relevant environment variable is set.' |
|---|
| | 30 | # ) |
|---|