Kaydet (Commit) 28d5262f authored tarafından Jon Dufresne's avatar Jon Dufresne Kaydeden (comit) Mariusz Felisiak

Removed redundant os.path.abspath() call.

üst a5accc03
...@@ -300,7 +300,7 @@ class Command(BaseCommand): ...@@ -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):
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment