Skip to content

Commit

Permalink
Update load function conf naming
Browse files Browse the repository at this point in the history
  • Loading branch information
xiancg committed Aug 11, 2024
1 parent 60dc4ec commit be5a88c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vfxnaming/naming.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,9 +308,9 @@ def load_session(repo: Union[Path, None] = None) -> bool:
if not repo.exists():
logger.warning(f"Given repo directory does not exist: {repo}")
return False
namingconf = repo / "naming.conf"
namingconf = repo / "vfxnaming.conf"
if not namingconf.exists():
logger.warning(f"Repo is not valid. naming.conf not found {namingconf}")
logger.warning(f"Repo is not valid. vfxnaming.conf not found {namingconf}")
return False
rules.reset_rules()
tokens.reset_tokens()
Expand Down

0 comments on commit be5a88c

Please sign in to comment.