diff options
Diffstat (limited to 'module/debug.py')
-rw-r--r-- | module/debug.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/module/debug.py b/module/debug.py index 8d1ddd3d0..54a159e78 100644 --- a/module/debug.py +++ b/module/debug.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #coding:utf-8 import re @@ -41,7 +40,7 @@ def initReport(): reports.append(f) for i, f in enumerate(reports): - print "%s. %s" % (i,f) + print "%s. %s" % (i, f) choice = raw_input("Choose Report: ") @@ -92,4 +91,4 @@ def initReport(): return frame, plugin, pyfile if __name__=='__main__': - print "No main method, use this module with your python shell"
\ No newline at end of file + print "No main method, use this module with your python shell" |