Advertisement
Guest User

No such code found

a guest
Dec 31st, 2012
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Line 298 to Line 306, there is no such script..........
  2. _______________________________________________________
  3. 298 for line in data.split("\n"):
  4. 299 if line.strip().startswith("var swf = \""):
  5. 300 found = True
  6. 301 p1 = line.find("=")
  7. 302 p2 = line.rfind(";")
  8. 303 if p1 <= 0 or p2 <= 0:
  9. 304 continue
  10. 305 data = line[p1 + 1:p2]
  11. 306 break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement