mirror of
https://github.com/samba-team/samba.git
synced 2025-06-22 07:17:05 +03:00
12 lines
187 B
Python
Executable File
12 lines
187 B
Python
Executable File
#!/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=' ')
|