Skip to content

Commit 7cec883

Browse files
committed
Fixup
1 parent a7244b2 commit 7cec883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmscontrib/YamlLoader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def has_changed(self, name):
227227
"rt", encoding="utf-8"))
228228

229229
# If there is a .skip_import file, we pretend the task didn't change
230-
if not os.path.exists(os.path.join(path, ".skip_import")):
230+
if os.path.exists(os.path.join(path, ".skip_import")):
231231
return False
232232

233233
# If there is no .itime file, we assume that the task has changed

0 commit comments

Comments
 (0)