Changelog: Remove checkbox to try move the dropper

This commit is contained in:
Ilija Lazoroski 2021-11-15 11:31:32 +01:00
parent fd4bcb88ea
commit de0fff9fbb
2 changed files with 4 additions and 2 deletions

View File

@ -22,6 +22,7 @@ Changelog](https://keepachangelog.com/en/1.0.0/).
- Checkbox for self deleting a monkey agent on cleanup. #1537
- Checkbox for file logging. #1537
- Remove serialization of config. #1537
- Checkbox that gave the option to not try to first move the dropper file. #1537
### Fixed
- A bug in network map page that caused delay of telemetry log loading. #1545

View File

@ -187,8 +187,9 @@ class MonkeyDrops(object):
logger.info("Cleaning up the dropper")
try:
if self._config["source_path"].lower() != self._config["destination_path"].lower() \
and os.path.exists(self._config["source_path"]):
if self._config["source_path"].lower() != self._config[
"destination_path"
].lower() and os.path.exists(self._config["source_path"]):
# try removing the file first
try: