Commit def6cfbb authored by 's avatar

fixed indent bugs in syslog files

parent 44ebef07
......@@ -222,7 +222,7 @@ if __name__ == '__main__':
except:
print 'syslog_client() [%s] ctor threw' % desc
traceback.print_exc()
return
return
try:
client.log( 'testing syslog_client() [%s]' % desc
......
......@@ -215,14 +215,14 @@ if __name__ == '__main__':
def test_client( desc, address=None ):
try:
if address:
client = syslog_client( address )
else:
client = syslog_client()
if address:
client = syslog_client( address )
else:
client = syslog_client()
except:
print 'syslog_client() [%s] ctor threw' % desc
print 'syslog_client() [%s] ctor threw' % desc
traceback.print_exc()
return
return
try:
client.log( 'testing syslog_client() [%s]' % desc
......
......@@ -222,7 +222,7 @@ if __name__ == '__main__':
except:
print 'syslog_client() [%s] ctor threw' % desc
traceback.print_exc()
return
return
try:
client.log( 'testing syslog_client() [%s]' % desc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment