]> granicus.if.org Git - python/commitdiff
pep8-fied method names
authorTarek Ziadé <ziade.tarek@gmail.com>
Sun, 5 Apr 2009 23:03:10 +0000 (23:03 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Sun, 5 Apr 2009 23:03:10 +0000 (23:03 +0000)
Lib/distutils/command/bdist.py

index cb7598df707e457bd3bb078d93ec99a7a671d22b..ec3375e5c457f5f76be00b1c2010ba87dd5cb51f 100644 (file)
@@ -75,14 +75,14 @@ class bdist(Command):
                       }
 
 
-    def initialize_options (self):
+    def initialize_options(self):
         self.bdist_base = None
         self.plat_name = None
         self.formats = None
         self.dist_dir = None
         self.skip_build = 0
 
-    def finalize_options (self):
+    def finalize_options(self):
         # have to finalize 'plat_name' before 'bdist_base'
         if self.plat_name is None:
             if self.skip_build:
@@ -110,7 +110,7 @@ class bdist(Command):
         if self.dist_dir is None:
             self.dist_dir = "dist"
 
-    def run (self):
+    def run(self):
         # Figure out which sub-commands we need to run.
         commands = []
         for format in self.formats: