diff options
| author | Devendra | 2014-04-24 00:35:10 +0530 | 
|---|---|---|
| committer | Devendra | 2014-04-24 00:35:10 +0530 | 
| commit | 93379625e26c98a8cfab72c106ae40819843f956 (patch) | |
| tree | fafb0b0a0f01dbf6bbea256970a22eca49037e7f /python-tornado | |
| parent | 493e29a108255eb3ae3166dc920f40e2f4e5c4c4 (diff) | |
| download | pubnub-python-93379625e26c98a8cfab72c106ae40819843f956.tar.bz2 | |
remove relative imports
Diffstat (limited to 'python-tornado')
| -rw-r--r-- | python-tornado/examples/publish-example.py | 2 | ||||
| -rw-r--r-- | python-tornado/examples/subscribe-example.py | 2 | ||||
| -rw-r--r-- | python-tornado/examples/uuid-example.py | 1 | ||||
| -rw-r--r-- | python-tornado/tests/benchmark.py | 3 | ||||
| -rw-r--r-- | python-tornado/tests/delivery.py | 1 | ||||
| -rwxr-xr-x | python-tornado/tests/subscribe-test.py | 1 | ||||
| -rw-r--r-- | python-tornado/tests/unit-tests.py | 4 | 
7 files changed, 0 insertions, 14 deletions
| diff --git a/python-tornado/examples/publish-example.py b/python-tornado/examples/publish-example.py index 38d713c..b02c41f 100644 --- a/python-tornado/examples/publish-example.py +++ b/python-tornado/examples/publish-example.py @@ -11,8 +11,6 @@  import sys  from twisted.internet import reactor -sys.path.append('../') -sys.path.append('../../')  from Pubnub import Pubnub  publish_key = len(sys.argv) > 1 and sys.argv[1] or 'demo' diff --git a/python-tornado/examples/subscribe-example.py b/python-tornado/examples/subscribe-example.py index 34ee886..0724fa9 100644 --- a/python-tornado/examples/subscribe-example.py +++ b/python-tornado/examples/subscribe-example.py @@ -11,8 +11,6 @@  import sys  import tornado -sys.path.append('../') -sys.path.append('../..')  from Pubnub import Pubnub  publish_key = len(sys.argv) > 1 and sys.argv[1] or 'demo' diff --git a/python-tornado/examples/uuid-example.py b/python-tornado/examples/uuid-example.py index 33e19f8..a1cabf6 100644 --- a/python-tornado/examples/uuid-example.py +++ b/python-tornado/examples/uuid-example.py @@ -11,7 +11,6 @@  import sys  import tornado -sys.path.append('../')  from Pubnub import Pubnub  ## ----------------------------------------------------------------------- diff --git a/python-tornado/tests/benchmark.py b/python-tornado/tests/benchmark.py index 9d1840e..636a87a 100644 --- a/python-tornado/tests/benchmark.py +++ b/python-tornado/tests/benchmark.py @@ -12,9 +12,6 @@  import sys  import datetime  import tornado -sys.path.append('./') -sys.path.append('../') -sys.path.append('../common')  from Pubnub import Pubnub  publish_key   = len(sys.argv) > 1 and sys.argv[1] or 'demo' diff --git a/python-tornado/tests/delivery.py b/python-tornado/tests/delivery.py index cb04332..d0eb9f9 100644 --- a/python-tornado/tests/delivery.py +++ b/python-tornado/tests/delivery.py @@ -14,7 +14,6 @@ import datetime  import time  import math -sys.path.append('../')  from Pubnub import Pubnub  ## ----------------------------------------------------------------------- diff --git a/python-tornado/tests/subscribe-test.py b/python-tornado/tests/subscribe-test.py index d8a3ea2..a2bafde 100755 --- a/python-tornado/tests/subscribe-test.py +++ b/python-tornado/tests/subscribe-test.py @@ -10,7 +10,6 @@  ## -----------------------------------  import sys -sys.path.append('../')  import datetime  from Pubnub import Pubnub  from functools import partial diff --git a/python-tornado/tests/unit-tests.py b/python-tornado/tests/unit-tests.py index b4b51f4..0069a5c 100644 --- a/python-tornado/tests/unit-tests.py +++ b/python-tornado/tests/unit-tests.py @@ -1,10 +1,6 @@  import sys -sys.path.append('../../common') -sys.path.append('..') -sys.path.append('../common') -sys.path.append('.')  from PubnubUnitTest import Suite  from Pubnub import Pubnub | 
