Skip to content

Commit

Permalink
Update dissect/target/plugins/os/unix/bsd/citrix/_os.py
Browse files Browse the repository at this point in the history
Fix a typo in my suggestion
  • Loading branch information
Miauwkeru authored Aug 14, 2023
1 parent 4759afc commit edfa41d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dissect/target/plugins/os/unix/bsd/citrix/_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def _parse_netscaler_configs(self):
# Current configuration of the netscaler
if hostname_match := RE_CONFIG_HOSTNAME.search(config):
self._hostname = hostname_match.groupdict()["hostname"]
if timezone_match := RE_CONFIG_TIMEZONE.search(config)
if timezone_match := RE_CONFIG_TIMEZONE.search(config):
tzinfo = timezone_match.groupdict()
self.target.timezone = tzinfo["zone_name"]

Expand Down

0 comments on commit edfa41d

Please sign in to comment.