diff options
author | Rob Austein <sra@hactrn.net> | 2010-05-20 03:03:48 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-05-20 03:03:48 +0000 |
commit | 5361b128a58b88086945f16925b01444c125a373 (patch) | |
tree | 03ea39995bd09c544b66002aa6a86a2db8b8e478 /rpkid/rpki/cli.py | |
parent | 8d5afa80f3b7d8ff358cd5f0aaa826384209dc54 (diff) |
Cleanup
svn path=/rpkid/rpki/cli.py; revision=3255
Diffstat (limited to 'rpkid/rpki/cli.py')
-rw-r--r-- | rpkid/rpki/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/cli.py b/rpkid/rpki/cli.py index a67b40a1..d31f7204 100644 --- a/rpkid/rpki/cli.py +++ b/rpkid/rpki/cli.py @@ -124,7 +124,7 @@ class Cmd(cmd.Cmd): names = self.get_names() result = [] for prefix in ("do_", "help_"): - result.extend(s[len(prefix):] for s in names if s .startswith(prefix + text)) + result.extend(s[len(prefix):] for s in names if s.startswith(prefix + text)) return result if have_readline: |