diff options
| author | Gordon Sim <gsim@apache.org> | 2014-07-16 14:09:41 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2014-07-16 14:09:41 +0000 |
| commit | f49cf6532cb59e0886d5a4a88d7d63f9f36652ca (patch) | |
| tree | 0fd8be7449c2950cb9f2b278b2f70d575dff8fce /qpid/tools/src | |
| parent | 3f3c77936e208b042ad6ca413680812b747d29aa (diff) | |
| download | qpid-python-f49cf6532cb59e0886d5a4a88d7d63f9f36652ca.tar.gz | |
QPID-5850: Support for long session names (patch from Ernie Allen)
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1611016 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/tools/src')
| -rw-r--r-- | qpid/tools/src/py/qpidtoollibs/disp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/tools/src/py/qpidtoollibs/disp.py b/qpid/tools/src/py/qpidtoollibs/disp.py index 21e09f8d00..1b7419ba2c 100644 --- a/qpid/tools/src/py/qpidtoollibs/disp.py +++ b/qpid/tools/src/py/qpidtoollibs/disp.py @@ -182,8 +182,8 @@ class Display: print line line = self.tablePrefix for width in colWidth: - for i in range (width): - line = line + "=" + line = line + "=" * width + line = line[:255] print line for row in rows: |
