Return the content of a dictionary
(dic)
| 1061 | PrintAndLog('No recent hosts', 'INFO') |
| 1062 | |
| 1063 | def StringFromDic(dic): |
| 1064 | ''' Return the content of a dictionary ''' |
| 1065 | |
| 1066 | Content = u'' |
| 1067 | for stuff in dic: |
| 1068 | Content += stuff + u'\n' |
| 1069 | return Content |
| 1070 | |
| 1071 | |
| 1072 | def ParseSysUsers(): |