| 
															
														 | 
														
															 
														 | 
														
															
														 | 
														
															 
														 | 
													
												
													
														| 
															364
														 | 
														
															         self._cwd = os.getcwd() 
														 | 
														
															364
														 | 
														
															         self._cwd = os.getcwd() 
														 | 
													
												
													
														| 
															365
														 | 
														
															         self._ws = tempfile.mkdtemp(prefix='test_cdiff') 
														 | 
														
															365
														 | 
														
															         self._ws = tempfile.mkdtemp(prefix='test_cdiff') 
														 | 
													
												
													
														| 
															366
														 | 
														
															         self._non_ws = tempfile.mkdtemp(prefix='test_cdiff') 
														 | 
														
															366
														 | 
														
															         self._non_ws = tempfile.mkdtemp(prefix='test_cdiff') 
														 | 
													
												
													
														| 
															367
														 | 
														
															-        cmd = ['git', 'init', self._ws] 
														 | 
														
															
														 | 
														
															 
														 | 
													
												
													
														| 
															368
														 | 
														
															-        subprocess.call(cmd, stdout=subprocess.PIPE) 
														 | 
														
															
														 | 
														
															 
														 | 
													
												
													
														| 
															
														 | 
														
															 
														 | 
														
															367
														 | 
														
															+        cmd = ('cd %s; git init; git config user.name me; ' 
														 | 
													
												
													
														| 
															
														 | 
														
															 
														 | 
														
															368
														 | 
														
															+               'git config user.email me@example.org') % self._ws 
														 | 
													
												
													
														| 
															
														 | 
														
															 
														 | 
														
															369
														 | 
														
															+        subprocess.call(cmd, shell=True, stdout=subprocess.PIPE) 
														 | 
													
												
													
														| 
															369
														 | 
														
															         self._change_file('init') 
														 | 
														
															370
														 | 
														
															         self._change_file('init') 
														 | 
													
												
													
														| 
															370
														 | 
														
															  
														 | 
														
															371
														 | 
														
															  
														 | 
													
												
													
														| 
															371
														 | 
														
															     def tearDown(self): 
														 | 
														
															372
														 | 
														
															     def tearDown(self): 
														 |