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
This commit is contained in:
Sean McGinnis 2016-12-09 08:17:35 -06:00 committed by Sean McGinnis
parent b0dad97c33
commit 0c1760594f
1 changed files with 1 additions and 1 deletions

View File

@ -15,6 +15,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import json
import os import os
import sys import sys
import time import time
@ -22,7 +23,6 @@ import time
from jinja2 import Environment from jinja2 import Environment
from jinja2 import FileSystemLoader from jinja2 import FileSystemLoader
from launchpadlib.launchpad import Launchpad from launchpadlib.launchpad import Launchpad
import simplejson as json
def create_files(templatepath, outputpath, projects): def create_files(templatepath, outputpath, projects):