Skip to content

Commit e08b300

Browse files
authored
Fixed typo
1 parent c8d4113 commit e08b300

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebook/notebookapp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ def _token_default(self):
947947
return os.getenv('JUPYTER_TOKEN')
948948
if os.getenv('JUPYTER_TOKEN_FILE'):
949949
self._token_generated = False
950-
with io.open(os.getenv('JUPYTER_TOKEN_FILE'), "r") as token_file
950+
with io.open(os.getenv('JUPYTER_TOKEN_FILE'), "r") as token_file:
951951
return token_file.read()
952952
if self.password:
953953
# no token if password is enabled

0 commit comments

Comments
 (0)