blob: 92a19daaa6cd9d1253270b20ef368910c2052957 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/python
from StringIO import StringIO
from urllib2 import urlopen
WEB_HOOK = 'http://readthedocs.org/build/588'
if __name__ == '__main__':
urlopen(WEB_HOOK, data=' ')
|