summaryrefslogtreecommitdiff
path: root/distutils2/command/cmd.py
diff options
context:
space:
mode:
authorAlexandru Plugaru <alexandru.plugaru@gmail.com>2011-08-30 09:30:47 +0200
committerAlexandru Plugaru <alexandru.plugaru@gmail.com>2011-08-30 09:30:47 +0200
commit6d6499fd8bc272709671a1bdb34c1e91dd1898cf (patch)
tree5e51742b81b00a6e81cd34dd205d4aed0fa15845 /distutils2/command/cmd.py
parente847e337597668638ebd94c652b53d7b28a1e6b1 (diff)
downloaddisutils2-6d6499fd8bc272709671a1bdb34c1e91dd1898cf.tar.gz
Fixed a python2.4 syntax errors.
Diffstat (limited to 'distutils2/command/cmd.py')
-rw-r--r--distutils2/command/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils2/command/cmd.py b/distutils2/command/cmd.py
index 95aca68..8fe2e7b 100644
--- a/distutils2/command/cmd.py
+++ b/distutils2/command/cmd.py
@@ -351,7 +351,7 @@ class Command(object):
def execute(self, func, args, msg=None, level=1):
util.execute(func, args, msg, dry_run=self.dry_run)
- def mkpath(self, name, mode=0o777, dry_run=None, verbose=0):
+ def mkpath(self, name, mode=00777, dry_run=None, verbose=0):
if dry_run is None:
dry_run = self.dry_run
name = os.path.normpath(name)