Commit 4832a365 authored by kez's avatar kez
Browse files

return super_args (the correct value) from parse_args

parent c79b3aa9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ class BatchArgParser(argparse.ArgumentParser):
        for attr in ('location', 'username', 'password'):
            if not getattr(super_args, attr):
                self.error("no %s provided, provide one with --%s or WEBDAV_%s environment" % (attr, attr, attr.upper()))
        return args
        return super_args


class Sanitizer: