tester

#!/usr/bin/env python

import sys
import traceback
import utils
from bin.server import LearndServer

if __name__ == '__main__':
learnd = LearndServer( )

try:
learnd.run()
except KeyboardInterrupt:
utils.log("KeyboardInterrupt - Exiting.")

learnd.close()
except:
traceback.print_exc()
utils.log("Exiting.")

learnd.close()

1 comment:

  1. Hi, I'm Felix with the Pygments tutorial. It would seem that the styles on your blog and the Pygments styles are conflicting. A possible fix would be to open up syntax.css (the one hosted on Dropbox) and change line-height to 7px, or something like that (see line 16 in that file).

    Also, you might want to check out my project, http://pygmentool.mine.nu/ which tries to simplify the process of posting code on your blogger (I use it all the time).

    ReplyDelete