diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-09-09 19:12:28 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-09-09 19:12:28 +0200 |
commit | 8a0d1c7e34d8bd18bd85666cce94403a5158975c (patch) | |
tree | 36050a818282c0a92ee88a6ef28354e186c5aebe /distribution/lib/DistUtils.py | |
parent | Test scripts improvements (diff) | |
download | ice-8a0d1c7e34d8bd18bd85666cce94403a5158975c.tar.bz2 ice-8a0d1c7e34d8bd18bd85666cce94403a5158975c.tar.xz ice-8a0d1c7e34d8bd18bd85666cce94403a5158975c.zip |
Fixed ICE-5196: allow setting an observer with IceMX enabled
Diffstat (limited to 'distribution/lib/DistUtils.py')
-rw-r--r-- | distribution/lib/DistUtils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distribution/lib/DistUtils.py b/distribution/lib/DistUtils.py index baaca0d5f49..82916337630 100644 --- a/distribution/lib/DistUtils.py +++ b/distribution/lib/DistUtils.py @@ -435,7 +435,7 @@ def fixPermission(dest): def tarArchive(dir, verbose = False, archiveDir = None): dist = os.path.basename(dir) - sys.stdout.write(" creating " + dist + ".tar.gz ...") + sys.stdout.write(" creating " + dist + ".tar.gz... ") sys.stdout.flush() cwd = os.getcwd() @@ -486,7 +486,7 @@ def untarArchive(archive, verbose = False, archiveDir = None): def zipArchive(dir, verbose = False, archiveDir = None): dist = os.path.basename(dir) - sys.stdout.write(" creating " + dist + ".zip ...") + sys.stdout.write(" creating " + dist + ".zip... ") sys.stdout.flush() cwd = os.getcwd() |