convert to python3

This commit is contained in:
j 2014-09-09 14:41:31 +02:00
commit 88a5ed9edc
12 changed files with 83 additions and 68 deletions

11
bin/peerlink Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/python3
import os
import sys
root = os.path.join(os.path.abspath(os.path.dirname(__file__)), '..')
if os.path.exists(os.path.join(root, 'peerlink')):
sys.path.insert(0, root)
from peerlink import server
server.run()