We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e158fe commit d319015Copy full SHA for d319015
1 file changed
test/test_examples.py
@@ -1,5 +1,5 @@
1
# coding=utf-8
2
-
+from __future__ import print_function
3
import re
4
import traceback
5
import pytest
@@ -19,13 +19,13 @@
19
try:
20
from dotenv import load_dotenv
21
except:
22
- print 'warning: dotenv module could not be imported'
+ print('warning: dotenv module could not be imported')
23
24
25
dotenv_path = join(dirname(__file__), '../', '.env')
26
load_dotenv(dotenv_path)
27
28
- print 'warning: no .env file loaded'
+ print('warning: no .env file loaded')
29
30
31
@pytest.mark.skipif(os.getenv('VCAP_SERVICES') is None,
0 commit comments