From 3a6568e6bcfefa6e6cda08b5c4570588eca57090 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Mon, 22 Feb 2016 17:17:17 +0100 Subject: [PATCH] Add missing import sentence of 'sys.path' :tophat::sparkles: --- taiga/projects/management/commands/sample_data.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/taiga/projects/management/commands/sample_data.py b/taiga/projects/management/commands/sample_data.py index 83d0d7d3..147ca0a7 100644 --- a/taiga/projects/management/commands/sample_data.py +++ b/taiga/projects/management/commands/sample_data.py @@ -17,6 +17,8 @@ import random import datetime +from os import path + from django.core.management.base import BaseCommand from django.db import transaction