Skip to content

Commit

Permalink
clarify the addition of user dir
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewwall committed Dec 22, 2023
1 parent 915cb92 commit e402cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/weewx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def add_user_path(config_dict):
lib_dir = os.path.abspath(os.path.join(root_dict['USER_DIR'], '..'))
import logging
log = logging.getLogger(__name__)
log.info("Adding 'user' directory '%s'" % lib_dir)
log.info("Adding to PYTHONPATH the 'user' directory '%s'" % lib_dir)
sys.path.append(lib_dir)


Expand Down

0 comments on commit e402cd4

Please sign in to comment.