diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2012-03-16 00:07:10 -0700 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2012-03-16 00:07:10 -0700 |
| commit | d304bf7106b07ea091dc6eb06623983a47682ea6 (patch) | |
| tree | f81eb9d7a3493ed1301342d3a6b08064b9275fe3 /app.py | |
| parent | 8f8c1304e6746a1fcac856846d6835ecc5e21e84 (diff) | |
switch to python 2.5
Diffstat (limited to 'app.py')
| -rw-r--r-- | app.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,7 @@ -import json +try: + import json +except ImportError: + import simplejson as json import os import random import requests |
