enterprise: Remove dead code

(imported from commit ca0cdc89f72367d15cd8cfe33666a4cff80deb66)
This commit is contained in:
Zev Benjamin 2013-11-13 13:43:13 -05:00
parent 8aa307f438
commit baecc950a5
1 changed files with 1 additions and 4 deletions

View File

@ -8,7 +8,7 @@ import shutil
import time
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
from zulip_tools import DEPLOYMENTS_DIR, LOCK_DIR, TIMESTAMP_FORMAT, FAIL, WARNING, ENDC
from zulip_tools import DEPLOYMENTS_DIR, LOCK_DIR, FAIL, WARNING, ENDC
logging.basicConfig(format="%(asctime)s upgrade-zulip: %(message)s",
level=logging.INFO)
@ -39,9 +39,6 @@ if not got_lock:
+ ENDC
sys.exit(1)
timestamp = datetime.datetime.now().strftime(TIMESTAMP_FORMAT)
deploy_path = os.path.join(DEPLOYMENTS_DIR, timestamp)
logging.info("Unpacking the tarball")
deploy_path = subprocess.check_output([os.path.join(os.path.dirname(__file__), 'unpack-zulip'),
tarball_path])