Skip to content

Commit

Permalink
Small Docstring Fix (pex-tool#595)
Browse files Browse the repository at this point in the history
Docstring typo I came across while looking through the source.
  • Loading branch information
chrisjbremner authored and jsirois committed Oct 11, 2018
1 parent be43570 commit 2a348e3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pex/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,7 @@ def safe_mkdir(directory, clean=False):
"""Safely create a directory.
Ensures a directory is present. If it's not there, it is created. If it
is, it's a no-op. no-op. If clean is True, ensures the directory is
empty.
is, it's a no-op. If clean is True, ensures the directory is empty.
"""
if clean:
safe_rmtree(directory)
Expand Down

0 comments on commit 2a348e3

Please sign in to comment.