summaryrefslogtreecommitdiff
path: root/cli.py
diff options
context:
space:
mode:
authorjvoisin2011-06-29 16:45:18 +0200
committerjvoisin2011-06-29 16:45:18 +0200
commit9250934c2ecee40f03588e10deeb648f17614d79 (patch)
tree5ecd7863c2ac64ebfbb243a4a33d29b010e3a726 /cli.py
parentab11ba02984fe38b495dc6638c43b85d3dbbf404 (diff)
Small modification for the archive display_all() function
Diffstat (limited to 'cli.py')
-rwxr-xr-xcli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli.py b/cli.py
index 3ebe969..0b5fc8f 100755
--- a/cli.py
+++ b/cli.py
@@ -41,7 +41,7 @@ def list_meta(class_file, filename):
41 ''' 41 '''
42 print('[+] File %s :' % filename) 42 print('[+] File %s :' % filename)
43 for key, value in class_file.get_meta().iteritems(): 43 for key, value in class_file.get_meta().iteritems():
44 print(key + ' : ' + value) 44 print(key + ' : ' + str(value))
45 45
46def is_clean(class_file, filename): 46def is_clean(class_file, filename):
47 ''' 47 '''