diff options
author | John Dennis <jdennis@redhat.com> | 2014-11-02 11:43:35 -0500 |
---|---|---|
committer | John Dennis <jdennis@redhat.com> | 2014-11-02 11:43:35 -0500 |
commit | 7e5e3903a69671eb4f9047f1b104e36b27c972c2 (patch) | |
tree | 0ba13bb7af02d3c6c8d2b55290250244aacffe98 /python/mapping_app.py | |
parent | 6dd871727c262f5fcc58853e2c1f7b4081cc3e32 (diff) | |
download | federated-mapping-7e5e3903a69671eb4f9047f1b104e36b27c972c2.tar.gz federated-mapping-7e5e3903a69671eb4f9047f1b104e36b27c972c2.tar.xz federated-mapping-7e5e3903a69671eb4f9047f1b104e36b27c972c2.zip |
remove or replace site specific strings
Diffstat (limited to 'python/mapping_app.py')
-rwxr-xr-x | python/mapping_app.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/mapping_app.py b/python/mapping_app.py index c590061..1d1950e 100755 --- a/python/mapping_app.py +++ b/python/mapping_app.py @@ -9,8 +9,8 @@ import traceback LOG = logging.getLogger() logging.basicConfig(level=logging.INFO, format='%(message)s') -rule_filename = '/home/jdennis/src/misc/federation_mapping/rules-python-01.json' -assertion_filename = '/home/jdennis/src/misc/federation_mapping/assertion-01.json' +rule_filename = 'rules-python-01.json' +assertion_filename = 'assertion-01.json' def assertion_from_file(filename): with open(filename) as stream: |