Skip to content

Commit

Permalink
Fixed a bug with changed location of timesketch.conf (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiddinn authored and Onager committed Jul 8, 2019
1 parent b17d111 commit 28d6f2c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l2tscaffolder/definitions/timesketch.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')):
Expand Down
File renamed without changes.

0 comments on commit 28d6f2c

Please sign in to comment.