diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-25 00:21:01 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-25 00:21:01 +0000 |
commit | 938cc1c0e38e21c3dfcbf21527c3d41349e86519 (patch) | |
tree | af28a5e915458fcd8673f5e2ba4f7d83bde89c8e /tools | |
parent | 9319906a24ec14da57d74a9c37676da4b2d5ef4f (diff) | |
download | chromium_src-938cc1c0e38e21c3dfcbf21527c3d41349e86519.zip chromium_src-938cc1c0e38e21c3dfcbf21527c3d41349e86519.tar.gz chromium_src-938cc1c0e38e21c3dfcbf21527c3d41349e86519.tar.bz2 |
fix call to os.makedirs
it's in the os module, not os.path.
tbr=deanm
Review URL: http://codereview.chromium.org/27114
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10312 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/grit/grit/tool/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/grit/grit/tool/build.py b/tools/grit/grit/tool/build.py index e3e43d6..2cd8a0b 100644 --- a/tools/grit/grit/tool/build.py +++ b/tools/grit/grit/tool/build.py @@ -176,7 +176,7 @@ are exported to translation interchange files (e.g. XMB files), etc. # Make the output directory if it doesn't exist. outdir = os.path.split(output.GetOutputFilename())[0] if not os.path.exists(outdir): - os.path.makedirs(outdir) + os.makedirs(outdir) outfile = self.fo_create(output.GetOutputFilename(), 'wb') if output.GetType() != 'data_package': |