Skip to content

Commit

Permalink
Merge ccac867 into 1af04b0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-bohls committed Mar 12, 2018
2 parents 1af04b0 + ccac867 commit fc5cfe4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nixnet/_session/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __del__(self):
def __enter__(self):
return self

def __exit__(self, type, value, traceback):
def __exit__(self, exception_type, exception_value, traceback):
self.close()

def __eq__(self, other):
Expand Down
2 changes: 1 addition & 1 deletion nixnet/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def __del__(self):
def __enter__(self):
return self

def __exit__(self, type, value, traceback):
def __exit__(self, exception_type, exception_value, traceback):
self.close()

def __eq__(self, other):
Expand Down
2 changes: 1 addition & 1 deletion nixnet/database/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __del__(self):
def __enter__(self):
return self

def __exit__(self, type, value, traceback):
def __exit__(self, exception_type, exception_value, traceback):
self.close()

def __eq__(self, other):
Expand Down
2 changes: 1 addition & 1 deletion nixnet/system/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __del__(self):
def __enter__(self):
return self

def __exit__(self, type, value, traceback):
def __exit__(self, exception_type, exception_value, traceback):
self.close()

def __eq__(self, other):
Expand Down

0 comments on commit fc5cfe4

Please sign in to comment.