# HG changeset patch
# User Oleg Oshmyan <chortos@inbox.lv>
# Date 1305416012 -3600
# Node ID 10aa5a0e46bd1869f0d1f05430fced86239abee1
# Parent  19c42a3cd962407e05397ccd14ae291fbda3fbf9
Fixed an exception raised instead of forceful process termination on Win32

diff -r 19c42a3cd962 -r 10aa5a0e46bd win32.py
--- a/win32.py	Sun Apr 24 20:05:20 2011 +0100
+++ b/win32.py	Sun May 15 00:33:32 2011 +0100
@@ -544,5 +544,5 @@
 	try:
 		process.terminate()
 	except AttributeError:
-		TerminateProcess(process._handle)
+		TerminateProcess(process._handle, 1)
 terminate = kill
\ No newline at end of file