From 32da7feb496ef31c48b5cbe4e37a4c68ed1b7dd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Thu, 9 Mar 2017 11:40:20 +0200 Subject: Python 3.6 invalid escape sequence deprecation fixes https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior --- git/test/test_tree.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git/test/test_tree.py') diff --git a/git/test/test_tree.py b/git/test/test_tree.py index ab85bc9c..5fd4d760 100644 --- a/git/test/test_tree.py +++ b/git/test/test_tree.py @@ -24,7 +24,7 @@ import os.path as osp class TestTree(TestBase): @skipIf(HIDE_WINDOWS_KNOWN_ERRORS and sys.version_info[:2] == (3, 5), """ - File "C:\projects\gitpython\git\cmd.py", line 559, in execute + File "C:\\projects\\gitpython\\git\\cmd.py", line 559, in execute raise GitCommandNotFound(command, err) git.exc.GitCommandNotFound: Cmd('git') not found due to: OSError('[WinError 6] The handle is invalid') cmdline: git cat-file --batch-check""") @@ -57,7 +57,7 @@ class TestTree(TestBase): # END for each item in tree @skipIf(HIDE_WINDOWS_KNOWN_ERRORS and sys.version_info[:2] == (3, 5), """ - File "C:\projects\gitpython\git\cmd.py", line 559, in execute + File "C:\\projects\\gitpython\\git\\cmd.py", line 559, in execute raise GitCommandNotFound(command, err) git.exc.GitCommandNotFound: Cmd('git') not found due to: OSError('[WinError 6] The handle is invalid') cmdline: git cat-file --batch-check""") -- cgit v1.2.1