diff options
| author | Lvov Maxim <usrleon@gmail.com> | 2011-06-11 00:42:44 +0400 |
|---|---|---|
| committer | Lvov Maxim <usrleon@gmail.com> | 2011-06-11 00:42:44 +0400 |
| commit | 8ded8e4bde3825efc8a886aad40d54d0c9d126dc (patch) | |
| tree | 8ffbe1ca02b13189ea4c5b45ae9ea6d2ebf51969 /bin | |
| parent | 8de8ed78c2d3d6ca8342134234e0cc361611de54 (diff) | |
small pep8 fixes
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/nova-manage | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/nova-manage b/bin/nova-manage index 0b92c349a..23ebe3c93 100755 --- a/bin/nova-manage +++ b/bin/nova-manage @@ -1301,9 +1301,9 @@ def main(): action, fn = matches[0] # For not decorated methods - arguments = getattr(fn ,'arguments', '') - optargs = getattr(fn ,'optargs', '') - options = getattr(fn ,'options', '') + arguments = getattr(fn, 'arguments', '') + optargs = getattr(fn, 'optargs', '') + options = getattr(fn, 'options', '') usage = "%prog " + "%s %s <args> [options]" % (sys.argv[2], sys.argv[3]) parser = OptionParser(usage=usage) |
