Commit 280079bd authored by Matt Wala's avatar Matt Wala
Browse files

Fix call to logger to also work when args are empty

parent 200e42f8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ def main():
        else:
            args.append(arg)

    logger.info("pylint %s", " ".join(shlex.quote(arg) for arg in args))
    logger.info(" ".join(shlex.quote(arg) for arg in ["pylint"] + args))
    pylint.lint.Run(args)