Commit 2f5c24e2 authored by owsla's avatar owsla

Fix typo which caused failure when checking if another rdiff-backup process is

running on Windows.


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@1022 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent eacfa9d3
New in v1.2.7 (????/??/??)
---------------------------
Fix typo which caused failure when checking if another rdiff-backup process is
running on Windows. Thanks to Ryan for the bug report. (Andrew Ferguson)
New in v1.2.6 (2009/01/27)
---------------------------
......
......@@ -351,6 +351,7 @@ def check_pids(curmir_incs):
except AttributeError:
assert os.name == 'nt'
import win32api, win32con, pywintypes
process = None
try:
process = win32api.OpenProcess(win32con.PROCESS_ALL_ACCESS,
0, pid)
......
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