summaryrefslogtreecommitdiffstats
path: root/base/module.py
diff options
context:
space:
mode:
authorYaakov Nemoy <loupgaroublond@gmail.com>2008-10-01 19:50:34 -0400
committerYaakov M. Nemoy <loupgaroublond@gmail.com>2008-10-01 19:50:34 -0400
commitcfb2820e1051de15e37c4a3d12be9b5514f81610 (patch)
tree45f5706906db6ee17542da263ebf79b9695a6228 /base/module.py
parent7810e072debc0255de3135874e5c46f156f52d4a (diff)
downloadfedora-devshell-cfb2820e1051de15e37c4a3d12be9b5514f81610.tar.gz
fedora-devshell-cfb2820e1051de15e37c4a3d12be9b5514f81610.tar.xz
fedora-devshell-cfb2820e1051de15e37c4a3d12be9b5514f81610.zip
Breaks everything up into seperate files.
I had a problem where having Module in the local namespace was not the same as having Module in the non local namespace (via an import). Somehow breaking it down this way seemed simpler.
Diffstat (limited to 'base/module.py')
-rw-r--r--base/module.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/base/module.py b/base/module.py
new file mode 100644
index 0000000..d527ea0
--- /dev/null
+++ b/base/module.py
@@ -0,0 +1,4 @@
+
+class Module(object):
+ """ Our parent class for all command modules """
+ pass