Skip to content

Commit b4e7c66

Browse files
committed
Removal of simplejson
1 parent 3459b91 commit b4e7c66

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

manager/ec2-check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import json
1414
except ImportError:
1515
try:
16-
import simplejson as json
16+
import json
1717
except ImportError:
1818
print "Need access to a json module"
1919
sys.exit(1)

setup/server_setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
def install_manager_packages():
2020
""" Install basic system packages required for the manager """
2121
pkg_list = ["mysql-server", "python-mysqldb", "openssh-server", "make",
22-
"git", "cron", "unzip", "python-simplejson"]
22+
"git", "cron", "unzip"]
2323
install_apt_packages(pkg_list)
2424

2525
def install_website_packages():

worker/tournament_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import time
1010
import zlib
1111
import urllib
12-
import simplejson as json
12+
import json
1313
import traceback
1414
from subprocess import Popen, PIPE
1515

0 commit comments

Comments
 (0)