summaryrefslogtreecommitdiffstats
path: root/base/util.py
diff options
context:
space:
mode:
authorYaakov M. Nemoy <loupgaroublond@gmail.com>2009-01-05 00:56:34 -0500
committerYaakov M. Nemoy <loupgaroublond@gmail.com>2009-01-05 00:56:34 -0500
commit1dd83c963c26d34ebe37bf74f36e8b9eaaf3ddfe (patch)
tree93f2e42de8c5ab60596b2141ccd1aaa44396bcc0 /base/util.py
parent6de41224c5133ced1124521ea0b212d1f6f2c2c4 (diff)
downloadfedora-devshell-1dd83c963c26d34ebe37bf74f36e8b9eaaf3ddfe.tar.gz
fedora-devshell-1dd83c963c26d34ebe37bf74f36e8b9eaaf3ddfe.tar.xz
fedora-devshell-1dd83c963c26d34ebe37bf74f36e8b9eaaf3ddfe.zip
Add __all__ statements to modules.
Diffstat (limited to 'base/util.py')
-rw-r--r--base/util.py3
1 files changed, 2 insertions, 1 deletions
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']