diff options
| author | Stephen L. Blum | 2014-12-08 21:15:11 -0800 | 
|---|---|---|
| committer | Stephen L. Blum | 2014-12-08 21:15:11 -0800 | 
| commit | c1f462a0f9e3a5fd806fbd195d2d6e4efe5d8bf8 (patch) | |
| tree | ca5ec84896b4df0b90fbad00e98a1ffe8b8b096d /Pubnub.py | |
| parent | 02766fc23b910f2f191a2e670052f31f0f0d0503 (diff) | |
| download | pubnub-python-c1f462a0f9e3a5fd806fbd195d2d6e4efe5d8bf8.tar.bz2 | |
missing timeout keyword argument
Diffstat (limited to 'Pubnub.py')
| -rw-r--r-- | Pubnub.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -1660,7 +1660,7 @@ class PubnubTwisted(PubnubCoreAsync):          self.headers['V'] = [self.version]          self.pnsdk = 'PubNub-Python-' + 'Twisted' + '/' + self.version -    def _request(self, request, callback=None, error=None, single=False): +    def _request(self, request, callback=None, error=None, single=False, timeout=5):          global pnconn_pool          def _invoke(func, data): | 
