0

I recently started building some python scripts to run on an Ubuntu server to be called from Apache2 server(Running this on Beagle Bone Black/Ubuntu). I kept getting internal server error and had no idea why. Turns out it was the end of line characters assigned by default by PyDev/Eclipse. It was using CRLF as the end of line which Unix OSs do not recognize and caused nasty crashes and a lot of frustration. I wanted to find out if there is a setting for PyDev or Eclipse to change the end of line character to only LF as needed by Unix based OS.

Thanks

Travis Elliott
  • 291
  • 2
  • 5
  • 18

1 Answers1

0

Have a look here: Eclipse and Windows newlines

Go to preferences, and on General->Workspace settings you'll find this setting.

Community
  • 1
  • 1
Rapolas K.
  • 1,669
  • 26
  • 34