diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-01-26 12:56:46 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-01-26 12:56:46 -0500 |
commit | 8001d7eadd0af627101254dad2ab22dbd454b7ab (patch) | |
tree | 0283337db5ce3eefbc4ab8412a605209afec2904 /cloudinit | |
parent | be11324740ad4624c45a6e909643ab84aecdbf16 (diff) | |
download | vyos-cloud-init-8001d7eadd0af627101254dad2ab22dbd454b7ab.tar.gz vyos-cloud-init-8001d7eadd0af627101254dad2ab22dbd454b7ab.zip |
remove needless import and defines in util.py
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/util.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/cloudinit/util.py b/cloudinit/util.py index e958fc02..d6b1860b 100644 --- a/cloudinit/util.py +++ b/cloudinit/util.py @@ -21,17 +21,12 @@ import os.path import errno import subprocess from Cheetah.Template import Template -import cloudinit import urllib2 import urllib import logging import traceback import re -WARN = logging.WARN -DEBUG = logging.DEBUG -INFO = logging.INFO - def read_conf(fname): try: stream = open(fname,"r") |