From 0c1760594f495a18d26391df9081e50b266b6f09 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Fri, 9 Dec 2016 08:17:35 -0600 Subject: [PATCH] Remove use of simplejson library The simplejson library was not included in the setup requirements. Since it is not actually needed - the default json library works fine - it should just be removed. Change-Id: I50c083344ea91e8a169a8b503c9418d71ec541e6 --- bugdaystats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bugdaystats.py b/bugdaystats.py index 211fdd3..f5b5851 100755 --- a/bugdaystats.py +++ b/bugdaystats.py @@ -15,6 +15,7 @@ # License for the specific language governing permissions and limitations # under the License. +import json import os import sys import time @@ -22,7 +23,6 @@ import time from jinja2 import Environment from jinja2 import FileSystemLoader from launchpadlib.launchpad import Launchpad -import simplejson as json def create_files(templatepath, outputpath, projects):