Skip to content

Commit 088ef93

Browse files
committed
Merge branch 'oauth2' into assemble
2 parents 9466088 + b791f8a commit 088ef93

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,6 @@ src/build
5353
# vim files
5454
*.swp
5555

56+
# The test configuration file(s) could potentially contain credentials
57+
tests/config.json
58+

tests/test_client.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
except: # Python 3
77
from urllib.parse import urljoin
88
import time
9+
try:
10+
FileNotFoundError # Python 3
11+
except NameError:
12+
FileNotFoundError = IOError # Python 2
913

1014
import requests
1115

0 commit comments

Comments
 (0)