summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2007-03-28 19:22:07 +0000
committerBob Ippolito <bob@redivi.com>2007-03-28 19:22:07 +0000
commit4eb5b00743d235c709d218c5d876c1bf1697351b (patch)
tree6139899f678e4173a001d76a9dbb35067766c4fb /scripts
parent9ec6701b19648f9e5c570d7be213f2c844a2400f (diff)
downloadsimplejson-4eb5b00743d235c709d218c5d876c1bf1697351b.tar.gz
fix dump()
git-svn-id: http://simplejson.googlecode.com/svn/trunk@51 a4795897-2c25-0410-b006-0d3caba88fa1
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/make_docs.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/make_docs.py b/scripts/make_docs.py
index 62a4724..2c59032 100755
--- a/scripts/make_docs.py
+++ b/scripts/make_docs.py
@@ -15,9 +15,11 @@ def _get_version():
return dist.version
VERSION = _get_version()
+PUDGE = '/Library/Frameworks/Python.framework/Versions/2.4/bin/pudge'
+#PUDGE = 'pudge'
res = subprocess.call([
- 'pudge', '-v', '-d', 'docs', '-m', PROJECT,
+ PUDGE, '-v', '-d', 'docs', '-m', PROJECT,
'-l', '%s %s' % (PROJECT, VERSION),
'--theme=green'
])