converting hpy on linux
Status: Alpha
Brought to you by:
azaraskin
The script convertFromHPY.py wasn't able to generate
syntatically correct python code. Here is why:
if source.count("\n") > source.count("\r"):
splitter = "\n"
else:
splitter = "\r"
These lines weren't able to detect that the splitter to
be used on the files was "\n". Maybe because of the
"unzip" application I used, but by harcoding splitter =
"\n" on the next line from this snip, everything worked.
Logged In: YES
user_id=15179
confirmed: same problem, same solution
*t