Commit ccd607be by James Cammarata

Merge pull request #7160 from mkosmach/devel

Please add simplejson as alternative to json in apt_rpm
parents 6592511e fbf3b78a
...@@ -60,7 +60,11 @@ EXAMPLES = ''' ...@@ -60,7 +60,11 @@ EXAMPLES = '''
''' '''
import json try:
import json
except ImportError:
import simplejson as json
import shlex import shlex
import os import os
import sys import sys
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment