| Index: presubmit_support.py
|
| diff --git a/presubmit_support.py b/presubmit_support.py
|
| index 249ec09367fd50659c910bc1d8ec29cf764704f7..4f72d5c8604974d4e9b43e6ded0ad3049b6454c3 100755
|
| --- a/presubmit_support.py
|
| +++ b/presubmit_support.py
|
| @@ -16,7 +16,7 @@ import cpplint
|
| import cPickle # Exposed through the API.
|
| import cStringIO # Exposed through the API.
|
| import contextlib
|
| -import fnmatch
|
| +import fnmatch # Exposed through the API.
|
| import glob
|
| import inspect
|
| import itertools
|
| @@ -348,6 +348,7 @@ class InputApi(object):
|
| self.cPickle = cPickle
|
| self.cpplint = cpplint
|
| self.cStringIO = cStringIO
|
| + self.fnmatch = fnmatch
|
| self.glob = glob.glob
|
| self.json = json
|
| self.logging = logging.getLogger('PRESUBMIT')
|
|
|