From 502e01c1f5c47dffd7aaf37d2aed5722fc7b3d95 Mon Sep 17 00:00:00 2001 From: Drew Larson Date: Sat, 28 Jan 2017 20:32:35 -0600 Subject: [PATCH] Clean up. --- bikeshop_project/bikeshop/settings/production.py | 2 +- bikeshop_project/webpack.dev.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bikeshop_project/bikeshop/settings/production.py b/bikeshop_project/bikeshop/settings/production.py index e668e04..704c3a0 100644 --- a/bikeshop_project/bikeshop/settings/production.py +++ b/bikeshop_project/bikeshop/settings/production.py @@ -1,5 +1,5 @@ +import os import sys - import rollbar from .base import * # noqa diff --git a/bikeshop_project/webpack.dev.config.js b/bikeshop_project/webpack.dev.config.js index 13638bb..7b4f3af 100644 --- a/bikeshop_project/webpack.dev.config.js +++ b/bikeshop_project/webpack.dev.config.js @@ -40,7 +40,7 @@ config.module.loaders.push( { test: /(\.scss|\.css)$/, loader: ExtractTextPlugin.extract('style', 'css?sourceMap&modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]!postcss!sass?sourceMap!toolbox'), - }, + } ); module.exports = config;