mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-16 03:36:46 +01:00
...
This commit is contained in:
parent
8a902e7810
commit
128cbd8695
1 changed files with 3 additions and 1 deletions
|
|
@ -13,7 +13,7 @@
|
|||
message with the summary of the closed bug.
|
||||
|
||||
'''
|
||||
import re, urllib, importlib, sys, json
|
||||
import re, urllib, importlib, sys, json, socket
|
||||
|
||||
from lxml import html
|
||||
|
||||
|
|
@ -22,6 +22,8 @@
|
|||
GITHUB_BUG = 'https://api.github.com/repos/kovidgoyal/calibre/issues/%s'
|
||||
BUG_PAT = r'(Fix|Implement|Fixes|Fixed|Implemented|See)\s+#(\d+)'
|
||||
|
||||
socket.setdefaulttimeout(90)
|
||||
|
||||
class Bug:
|
||||
|
||||
def __init__(self):
|
||||
|
|
|
|||
Loading…
Reference in a new issue