Commit 74c6ada4 by sikang

bug fix

parent 3febb102
...@@ -89,7 +89,7 @@ class JavaGarble: ...@@ -89,7 +89,7 @@ class JavaGarble:
log_code = "" log_code = ""
for i in range(0, random.randint(0, 5)): for i in range(0, random.randint(0, 5)):
log_code += "Log.%s(\"%s\",\"%s\");\n" % ( log_code += "android.util.Log.%s(\"%s\",\"%s\");\n" % (
''.join(random.sample("idew", random.randint(1, 1))), ''.join(random.sample("idew", random.randint(1, 1))),
''.join(random.sample("ABCDEFGHIJKLMNOPQRSTUVWXYZ", random.randint(3, 10))), ''.join(random.sample("ABCDEFGHIJKLMNOPQRSTUVWXYZ", random.randint(3, 10))),
''.join(random.sample("ABCDEFGHIJKLMNOPQRSTUVWXYZ", random.randint(5, 15))) ''.join(random.sample("ABCDEFGHIJKLMNOPQRSTUVWXYZ", random.randint(5, 15)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment