Skip to content

Commit

Permalink
Merge pull request #1912 from codewarrior0/patch-1
Browse files Browse the repository at this point in the history
Fix `find: paths must precede expression` error in RemovePYCs.
  • Loading branch information
Mikhail Sobolev committed Nov 6, 2015
2 parents 6a662c1 + a8695f4 commit 24e51f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/steps/python_twisted.py
Expand Up @@ -544,6 +544,6 @@ def describe(self, done=False):

class RemovePYCs(ShellCommand):
name = "remove-.pyc"
command = ['find', '.', '-name', '*.pyc', '-exec', 'rm', '{}', ';']
command = ['find', '.', '-name', "'*.pyc'", '-exec', 'rm', '{}', ';']
description = ["removing", ".pyc", "files"]
descriptionDone = ["remove", ".pycs"]

0 comments on commit 24e51f8

Please sign in to comment.