Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resourcedir and jsondir errors #110

Open
larocquemb opened this issue Aug 27, 2020 · 1 comment
Open

resourcedir and jsondir errors #110

larocquemb opened this issue Aug 27, 2020 · 1 comment

Comments

@larocquemb
Copy link

I had a yaml config like:

speed: 1000
max_rows: 500000
reverse: False
search_sort: startEpochMicrosec
jsondir: test1
resourcedir: test2

and got an key error due referencing jsondir and resourcedir keys. so I renamed the keys to rd and jd, and it works. Appears to me as though there is an limitation with using dir at the end of the key. Weird.

  speed = confuse_config['speed'].get()
  reverse = confuse_config['reverse'].get()
  sortby = confuse_config['search_sort'].get()
  jdir = confuse_config['jd'].get()
  rdir = confuse_config['rd'].get()
@sampsyo
Copy link
Member

sampsyo commented Aug 27, 2020

Can you please include your full code and the full error message? Otherwise, it's pretty hard to see what's going on here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants