Skip to content

Commit 3178824

Browse files
committedMay 17, 2017
oops
1 parent 4685933 commit 3178824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nikola/plugins/command/auto/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def do_rebuild(self, event):
272272
fname.startswith('.') or
273273
'__pycache__' in event_path or
274274
event_path.endswith(('.pyc', '.pyo', '.pyd', '_bak')) or
275-
event.is_directory: # Skip on folders, these are usually duplicates
275+
event.is_directory): # Skip on folders, these are usually duplicates
276276
return
277277
self.logger.info('REBUILDING SITE (from {0})'.format(event_path))
278278
p = subprocess.Popen(self.cmd_arguments, stderr=subprocess.PIPE)

0 commit comments

Comments
 (0)
Please sign in to comment.