Browse Source

editorial fix: add a space between a keyword and a parenthesis.
trivial, skipping review.


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@2446 e5f2f494-b856-4b98-b285-d166d9295462

JINMEI Tatuya 15 years ago
parent
commit
8a7b6a4a81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/python/isc/log/log.py

+ 1 - 1
src/lib/python/isc/log/log.py

@@ -158,7 +158,7 @@ class NSLogger(logging.getLoggerClass()):
             max_bytes : limit log growth
             backup_count : max backup count
         """
-        if(log_file != 0  and log_file != ''):
+        if (log_file != 0  and log_file != ''):
             try:
                 self._file_handler = NSFileLogHandler(filename = log_file,
                                           maxBytes = max_bytes, backupCount = backup_count)