Skip to content

Commit 33e1171

Browse files
authored
Update constants.py to fix caching typo
updated the config parameter of no_cashing to no_caching this may be a breaking change to some configs that have used this value
1 parent 5144000 commit 33e1171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyff/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ class Config(object):
290290

291291
caching_enabled = S("caching_enabled", default=True, typeconv=as_bool, info="enable caching?")
292292

293-
no_cashing = N('no_cashing', invert=caching_enabled, short='C', info="disable all caches")
293+
no_caching = N('no_caching', invert=caching_enabled, short='C', info="disable all caches")
294294

295295
daemonize = S("daemonize", default=True, cmdline=['pyffd'], info="run in background")
296296

0 commit comments

Comments
 (0)