From d509611bd727c2f7b4b233d684628e4664c52092 Mon Sep 17 00:00:00 2001 From: Noskill Date: Thu, 3 Jan 2019 15:35:49 +0100 Subject: [PATCH] Fix indentation in report.py unneeded spaces were added on line 97. I removed them. --- libnmap/objects/report.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libnmap/objects/report.py b/libnmap/objects/report.py index 1f82e5d..34207b5 100644 --- a/libnmap/objects/report.py +++ b/libnmap/objects/report.py @@ -94,9 +94,9 @@ def startedstr(self): rval = '' try: rval = self._nmaprun['startstr'] - except(KeyError, TypeError, ValueError): - pass - return rval + except(KeyError, TypeError, ValueError): + pass + return rval @property def commandline(self):