From 1bebd478a10b241df702c308da0b77e4a03b6067 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bugdaystats.py b/bugdaystats.py index 6d5af17..ac9dec0 100755 --- a/bugdaystats.py +++ b/bugdaystats.py @@ -15,10 +15,11 @@ # License for the specific language governing permissions and limitations # under the License. -import simplejson as json +import json import os import sys import time + from jinja2 import Environment, FileSystemLoader from launchpadlib.launchpad import Launchpad