mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Removed redundant os.path.abspath() call.
This commit is contained in:
		
				
					committed by
					
						 Mariusz Felisiak
						Mariusz Felisiak
					
				
			
			
				
	
			
			
			
						parent
						
							a5accc0368
						
					
				
				
					commit
					28d5262fa3
				
			| @@ -300,7 +300,7 @@ class Command(BaseCommand): | ||||
|                 dirs.append(app_dir) | ||||
|         dirs.extend(fixture_dirs) | ||||
|         dirs.append('') | ||||
|         return [os.path.abspath(os.path.realpath(d)) for d in dirs] | ||||
|         return [os.path.realpath(d) for d in dirs] | ||||
|  | ||||
|     def parse_name(self, fixture_name): | ||||
|         """ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user