From e3148de261fa51a523cae1890c8e0f32fc386721 Mon Sep 17 00:00:00 2001 From: Jared Haight Date: Wed, 5 Aug 2015 21:19:18 -0400 Subject: [PATCH] Fixed file path typo --- lib/modules/situational_awareness/host/computerdetails.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/modules/situational_awareness/host/computerdetails.py b/lib/modules/situational_awareness/host/computerdetails.py index 4f2ed03..828c758 100644 --- a/lib/modules/situational_awareness/host/computerdetails.py +++ b/lib/modules/situational_awareness/host/computerdetails.py @@ -76,7 +76,7 @@ class Module: def generate(self): # read in the common module source code - moduleSource = self.mainMenu.installPath + "/data/module_source/situational_awareness/Host/Get-ComputerDetails.ps1" + moduleSource = self.mainMenu.installPath + "/data/module_source/situational_awareness/host/Get-ComputerDetails.ps1" try: f = open(moduleSource, 'r') @@ -109,4 +109,4 @@ class Module: return script # if we get to this point, no switched were specified - return script + "Get-ComputerDetails -ToString" \ No newline at end of file + return script + "Get-ComputerDetails -ToString"