Browse Source

[1345] style fix (reduntant space)

Jelte Jansen 13 years ago
parent
commit
f80ab7879c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/bindctl/bindcmd.py

+ 1 - 1
src/bin/bindctl/bindcmd.py

@@ -118,7 +118,7 @@ class BindCmdInterpreter(Cmd):
         # (as handled by the cmd module, and hence outside our reach) can
         # mistakenly add data twice, resulting in wrong completion results
         # The solution is to remove it.
-        delims = readline.get_completer_delims( )
+        delims = readline.get_completer_delims()
         delims = delims.replace('-', '')
         readline.set_completer_delims(delims)