Mercurial > hg > clwapp
changeset 5:dfcd4dbe4b1c
py3
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 24 Nov 2020 10:49:21 -0800 |
parents | 6ec69ecbc072 |
children | 1c4b7c1f11ad |
files | clwapp/clwapp.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/clwapp/clwapp.py Tue Nov 03 08:16:20 2020 -0800 +++ b/clwapp/clwapp.py Tue Nov 24 10:49:21 2020 -0800 @@ -17,7 +17,7 @@ import os import subprocess -import utils +import .utils from webob import Request, Response, exc @@ -28,7 +28,7 @@ def __init__(self, command, **kw): self.command = utils.shargs(command) - print self.command + print(self.command) for key in self.defaults: setattr(self, key, kw.get(key, self.defaults[key])) self.response_functions = { 'GET': self.get }