diff options
author | Tim Rozet <trozet@redhat.com> | 2017-09-15 16:53:02 -0400 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2017-09-15 16:53:02 -0400 |
commit | 54b8b2a51e4156d42005158f003fb307b32e45c1 (patch) | |
tree | 8b354d636a6354ff48551b69c7d5d5750e72468e | |
parent | ea691fed3042f42701cb355ce1db305564ba229a (diff) |
Fixes wrong argument for inventory with clean
Change-Id: I3ff145fa0f500182744fd310bb844e4bc5854663
Signed-off-by: Tim Rozet <trozet@redhat.com>
-rw-r--r-- | apex/clean.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/clean.py b/apex/clean.py index 81ae1770..efea0ff2 100644 --- a/apex/clean.py +++ b/apex/clean.py @@ -95,7 +95,7 @@ def clean_ssh_keys(key_file='/root/.ssh/authorized_keys'): def main(): clean_parser = argparse.ArgumentParser() - clean_parser.add_argument('-f', + clean_parser.add_argument('-i', dest='inv_file', required=False, default=None, |