From 2f5ca82d500d5d8fe7f2685c918eec9061372651 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 17 Sep 2018 21:22:29 +0100 Subject: [PATCH] Fix indentation error in abstracts.py --- lib/cuckoo/common/abstracts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cuckoo/common/abstracts.py b/lib/cuckoo/common/abstracts.py index ccbf44cb4..795c5739e 100644 --- a/lib/cuckoo/common/abstracts.py +++ b/lib/cuckoo/common/abstracts.py @@ -115,7 +115,7 @@ def _initialize(self, module_name): # If configured, use specific network interface for this # machine, else use the default value. - if machine_opts.get("interface"): + if machine_opts.get("interface"): machine.interface = machine_opts["interface"] else: machine.interface = mmanager_opts.get("interface")