Skip to content

Commit

Permalink
Allow using the built-in JSON module (with Python 2.6) rather than ha…
Browse files Browse the repository at this point in the history
…ving simplejson installed.
  • Loading branch information
waywardmonkeys authored and metcalfc committed Nov 18, 2010
1 parent 1ce5f97 commit afc7741
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion manifest.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
import logging import logging
import os import os
import re import re
import simplejson try:
import simplejson
except ImportError:
import json as simplejson
import sys import sys


from git_command import GitCommand from git_command import GitCommand
Expand Down

0 comments on commit afc7741

Please sign in to comment.