From 1dd83c963c26d34ebe37bf74f36e8b9eaaf3ddfe Mon Sep 17 00:00:00 2001 From: "Yaakov M. Nemoy" Date: Mon, 5 Jan 2009 00:56:34 -0500 Subject: Add __all__ statements to modules. --- base/util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'base') diff --git a/base/util.py b/base/util.py index ec72594..d24755e 100644 --- a/base/util.py +++ b/base/util.py @@ -80,4 +80,5 @@ def one(l, f): if f(x): return x -__all__ = ['pwd', 'copy', 'with_sudo', 'with_su', 'symlink', 'move'] +__all__ = ['pwd', 'copy', 'with_sudo', 'with_su', 'symlink', 'move', + 'log_file', 'one'] -- cgit