Commit def6cfbb authored by 's avatar

fixed indent bugs in syslog files

parent 44ebef07
...@@ -222,7 +222,7 @@ if __name__ == '__main__': ...@@ -222,7 +222,7 @@ if __name__ == '__main__':
except: except:
print 'syslog_client() [%s] ctor threw' % desc print 'syslog_client() [%s] ctor threw' % desc
traceback.print_exc() traceback.print_exc()
return return
try: try:
client.log( 'testing syslog_client() [%s]' % desc client.log( 'testing syslog_client() [%s]' % desc
......
...@@ -215,14 +215,14 @@ if __name__ == '__main__': ...@@ -215,14 +215,14 @@ if __name__ == '__main__':
def test_client( desc, address=None ): def test_client( desc, address=None ):
try: try:
if address: if address:
client = syslog_client( address ) client = syslog_client( address )
else: else:
client = syslog_client() client = syslog_client()
except: except:
print 'syslog_client() [%s] ctor threw' % desc print 'syslog_client() [%s] ctor threw' % desc
traceback.print_exc() traceback.print_exc()
return return
try: try:
client.log( 'testing syslog_client() [%s]' % desc client.log( 'testing syslog_client() [%s]' % desc
......
...@@ -222,7 +222,7 @@ if __name__ == '__main__': ...@@ -222,7 +222,7 @@ if __name__ == '__main__':
except: except:
print 'syslog_client() [%s] ctor threw' % desc print 'syslog_client() [%s] ctor threw' % desc
traceback.print_exc() traceback.print_exc()
return return
try: try:
client.log( 'testing syslog_client() [%s]' % desc 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