1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Fix config path for tests generator.
Author: Angelos Tzotsos <gcpp.kalxas@gmail.com>
Forwarded: not-needed
--- a/tests/gen_html.py
+++ b/tests/gen_html.py
@@ -61,7 +61,7 @@ print('''
dataType: 'text',
success: function(data) {
$('.request').val(data);
- $('.server').val('../csw.py?config=' + arr[0]);
+ $('.server').val('../csw.py?config=/usr/share/pycsw/' + arr[0]);
}
});
}
|