diff --git a/l2tscaffolder/definitions/timesketch.py b/l2tscaffolder/definitions/timesketch.py index d408d9e..285bd32 100644 --- a/l2tscaffolder/definitions/timesketch.py +++ b/l2tscaffolder/definitions/timesketch.py @@ -28,7 +28,7 @@ def ValidatePath(self, root_path: str) -> bool: if not os.path.isdir(os.path.join(root_path, 'timesketch')): return False - if not os.path.isfile(os.path.join(root_path, 'timesketch.conf')): + if not os.path.isfile(os.path.join(root_path, 'data', 'timesketch.conf')): return False if not os.path.isdir(os.path.join(root_path, 'timesketch', 'views')): diff --git a/test_data/TimesketchPath/timesketch.conf b/test_data/TimesketchPath/data/timesketch.conf similarity index 100% rename from test_data/TimesketchPath/timesketch.conf rename to test_data/TimesketchPath/data/timesketch.conf