IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 14, 2019, 4:59:32 PM (7 years ago)
Author:
fairlamb
Message:

Tidy up tests, and removed now unused files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ipp-259_genericise_backups/tools/backups/jira_backup.py

    r40937 r40944  
    88from backups.backup import Backup
    99
    10 DEFAULT_CONFIG_FILE = path.join(path.dirname(__file__), 'jira_backup.config')
     10EXPECTED_CONFIG_FILE = path.join(path.dirname(__file__), './jira_backup.config')
    1111
    1212
    1313class JiraBackup(Backup):
    1414
    15     def __init__(self, config_file=DEFAULT_CONFIG_FILE):
     15    def __init__(self, config_file=EXPECTED_CONFIG_FILE):
    1616        self.load_config(config_file)
    1717
     
    6969        nargs='?',
    7070        help='specify the location of a config that matches the ConfigSchema',
    71         default=DEFAULT_CONFIG_FILE)
     71        default=EXPECTED_CONFIG_FILE)
    7272
    7373    return parser.parse_args()
Note: See TracChangeset for help on using the changeset viewer.