Removed redundant os.path.abspath() call.
This commit is contained in:
parent
a5accc0368
commit
28d5262fa3
|
@ -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):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue