Use Python3's print function.

This commit is contained in:
Ryan Petrello
2013-05-03 11:00:16 -04:00
parent a4867e30c6
commit 1b94b518b2
2 changed files with 5 additions and 1 deletions

View File

@@ -142,7 +142,8 @@ class BaseCommandParent(object):
def run(self, args): def run(self, args):
super(SomeCommand, self).run(args) super(SomeCommand, self).run(args)
print(args.extra_arg) if args.extra_arg:
pass
""" """
arguments = ({ arguments = ({

View File

@@ -1,11 +1,14 @@
""" """
Serve command for Pecan. Serve command for Pecan.
""" """
from __future__ import print_function
import os import os
import sys import sys
import time import time
import subprocess import subprocess
import six
from pecan.commands import BaseCommand from pecan.commands import BaseCommand