Skip to content

Commit

Permalink
Fix code goof that a random bot found #1345
Browse files Browse the repository at this point in the history
  • Loading branch information
pgunn committed May 7, 2024
1 parent 084e44a commit dea8431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caiman/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_tempdir() -> str:
if os.path.isdir(os.environ['CAIMAN_TEMP']):
return os.environ['CAIMAN_TEMP']
else:
logging.warning(f"CAIMAN_TEMP is set to nonexistent directory {os.environment['CAIMAN_TEMP']}. Ignoring")
logging.warning(f"CAIMAN_TEMP is set to nonexistent directory {os.environ['CAIMAN_TEMP']}. Ignoring")
temp_under_data = os.path.join(caiman_datadir(), "temp")
if not os.path.isdir(temp_under_data):
logging.warning(f"Default temporary dir {temp_under_data} does not exist, creating")
Expand Down

2 comments on commit dea8431

@rob-the-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@pgunn
Copy link
Member Author

@pgunn pgunn commented on dea8431 May 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rob-the-bot Oh, you're a person? Sorry, I would've given you thanks, I just read too much meaning into the name. Thanks for poking me on this.

Please sign in to comment.