From 8f62fb7bd305337994bced7d23b347d0d39f5faf Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Wed, 14 Nov 2012 12:09:38 +0900 Subject: Tidy up code formatting a bit more Enable the following Pylint warnings: C0322: Operator not preceded by a space C0323: Operator not followed by a space C0324: Comma not followed by a space And make the necessary fixes. Change-Id: I74d74283ad5138cbaf28d492b18614eb355ff9fe --- git_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git_config.py') diff --git a/git_config.py b/git_config.py index 108438f6..56cc6a24 100644 --- a/git_config.py +++ b/git_config.py @@ -431,7 +431,7 @@ def _open_ssh(host, port=None): '-o','ControlPath %s' % ssh_sock(), host] if port is not None: - command_base[1:1] = ['-p',str(port)] + command_base[1:1] = ['-p', str(port)] # Since the key wasn't in _master_keys, we think that master isn't running. # ...but before actually starting a master, we'll double-check. This can -- cgit v1.2.3-54-g00ecf