From f1d4f08d1c625a021d3657064cd222b85bd2e190 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sat, 6 Feb 2010 19:00:30 +0000 Subject: [PATCH] trivial change to output dir name --- pyfpdb/py2exe_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/py2exe_setup.py b/pyfpdb/py2exe_setup.py index 1e38f98b..e6219ae3 100644 --- a/pyfpdb/py2exe_setup.py +++ b/pyfpdb/py2exe_setup.py @@ -91,7 +91,7 @@ today = date.today().strftime('%Y%m%d') print "\nOutput will be created in /dist/ and /fpdb_XXX_"+today+"/" print "Enter value for XXX (any length): ", # the comma means no newline xxx = sys.stdin.readline().rstrip() -dist_dir = r'..\fpdb_' + xxx + '_' + today +dist_dir = r'..\fpdb-' + xxx + '-' + today print