diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-02-08 00:37:29 -0600 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-02-08 00:37:29 -0600 |
commit | 039c18a9ab6259a13285a22d84390bba2c35642e (patch) | |
tree | 49a65b111a156586b5fe5c5895edb14418690d87 | |
parent | f837844242142599d1dee84309468624f6dd2048 (diff) |
Removed extra import commands:
* commands and home were loaded on repm.config
* realpath is not used
-rw-r--r-- | pato2.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -26,10 +26,9 @@ """ from repm.config import * -import tarfile, commands +import tarfile from glob import glob -from user import home -from os.path import isdir, isfile, realpath +from os.path import isdir, isfile def printf(text,output_=output): """Guarda el texto en la variable log y puede imprimir en pantalla.""" |