diff --git a/tsshbatch.py b/tsshbatch.py index ff23081..f6fcdbe 100755 --- a/tsshbatch.py +++ b/tsshbatch.py @@ -17,7 +17,7 @@ PROGNAME = "tsshbatch.py" BASENAME = PROGNAME.split(".py")[0] PROGENV = BASENAME.upper() -CVSID = "$Id: tsshbatch.py,v 1.162 2013/10/28 03:38:46 tundra Exp $" +CVSID = "$Id: tsshbatch.py,v 1.163 2013/10/28 13:19:16 tundra Exp $" VERSION = CVSID.split()[2] CPRT = "(c)" @@ -658,7 +658,9 @@ # Unroll and format dictionary structures - for symbol in SymbolTable: + symbols = SymbolTable.keys() + symbols.sort() + for symbol in symbols: symtbl.append(symbol + (PADWIDTH - len(symbol)) * " "+ SEPARATOR + SymbolTable[symbol]) for xfers, unrolled in ((Get_Transfer_List, gets), (Put_Transfer_List, puts)):