forked from aniani/vim
patch 7.4.1291
Problem: On MS-Windows the channel test server doesn't quit. Solution: Use return instead of break. (Ken Takata)
This commit is contained in:
@@ -133,7 +133,7 @@ class ThreadedTCPRequestHandler(socketserver.BaseRequestHandler):
|
||||
elif decoded[1] == '!quit!':
|
||||
# we're done
|
||||
self.server.shutdown()
|
||||
break
|
||||
return
|
||||
elif decoded[1] == '!crash!':
|
||||
# Crash!
|
||||
42 / 0
|
||||
|
Reference in New Issue
Block a user