PEP8 code style cleanup

This commit is contained in:
Yoann Roman
2011-01-07 10:49:46 -05:00
parent a7a4ce77f1
commit aea398e704
5 changed files with 8 additions and 8 deletions

View File

@@ -1,7 +1,6 @@
"""
PasteScript commands for Pecan.
"""
from runner import CommandRunner
from create import CreateCommand
from shell import ShellCommand

View File

@@ -1,11 +1,12 @@
"""
PasteScript base commands for Pecan.
PasteScript base command for Pecan.
"""
from pecan.configuration import _runtime_conf, set_config
from paste.script import command as paste_command
import sys
class Command(paste_command.Command):
"""
Base class for Pecan commands.

View File

@@ -1,15 +1,15 @@
"""
PasteScript commands for Pecan.
PasteScript create command for Pecan.
"""
from paste.script.create_distro import CreateDistroCommand
from pecan.templates import DEFAULT_TEMPLATE
from base import Command
from pecan.templates import DEFAULT_TEMPLATE
import copy
import os
import sys
class CreateCommand(CreateDistroCommand, Command):
"""
Creates the file layout for a new Pecan distribution.

View File

@@ -1,5 +1,5 @@
"""
PasteScript Command Runner
PasteScript command runner.
"""
from paste.script import command as paste_command

View File

@@ -1,12 +1,12 @@
"""
PasteScript shell command for Pecan.
"""
import sys
from webtest import TestApp
from base import Command
import sys
class ShellCommand(Command):
"""