Removed redundant os.path.abspath() call.

This commit is contained in:
Jon Dufresne 2019-04-25 02:56:06 -07:00 committed by Mariusz Felisiak
parent a5accc0368
commit 28d5262fa3
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ class Command(BaseCommand):
dirs.append(app_dir) dirs.append(app_dir)
dirs.extend(fixture_dirs) dirs.extend(fixture_dirs)
dirs.append('') 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): def parse_name(self, fixture_name):
""" """