From: Josh Durgin Date: Mon, 4 Feb 2013 18:39:21 +0000 (-0800) Subject: misc: don't use colon in default run name X-Git-Tag: 1.1.0~2326 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2f41f81dfac5674345b3c19d2843d90c087ef0e4;p=teuthology.git misc: don't use colon in default run name LD_LIBRARY_PATH does not work with colons (and backslash does not escape them.) --- diff --git a/teuthology/misc.py b/teuthology/misc.py index 5a775a4a0..b979b90ee 100644 --- a/teuthology/misc.py +++ b/teuthology/misc.py @@ -18,7 +18,7 @@ from .orchestra import run log = logging.getLogger(__name__) import datetime -stamp = datetime.datetime.now().strftime("%Y-%m-%d_%H:%M:%S") +stamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S") def get_testdir(ctx): if 'test_path' in ctx.teuthology_config: