Skip to content

Commit e89b5ff

Browse files
authored
Merge pull request #46 from lsst-epo/39-add-guard-rails-logging-to-the-pypi-package-informing-the-pi-of-which-project-they-are-currently-taking-effect-on
Fixed broken auth checker
2 parents 5013e8b + fceebca commit e89b5ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
]
1111
description = "The companion package to the Rubin citizen science notebooks."
1212

13-
version = "0.6.3"
13+
version = "0.6.4"
1414
readme = "README.md"
1515
dependencies = [
1616
"panoptes_client",

src/rubin/citsci/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def login_to_zooniverse(self, email):
9494
if(valid_email):
9595
self.email = email
9696
self.client = panoptes_client.Panoptes.connect(login="interactive")
97-
if self.client.username is not None:
97+
if self.client.logged_in is True:
9898
print("You now are logged in to the Zooniverse platform.")
9999
self.__log_slug_names()
100100
else:

0 commit comments

Comments
 (0)