- make matches and targets loaded w/o making hem python packages
[sfa.git] / sfatables / globals.py
index 676722b..fe6788d 100644 (file)
@@ -1,3 +1,5 @@
+import os.path
+
 sfatables_config = '/etc/sfatables'
-match_dir = 'matches'
-target_dir = 'targets'
+match_dir = os.path.join(sfatables_config, "matches")
+target_dir = os.path.join(sfatables_config, "targets")