Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomasz Dwojak <t.dwojak@amu.edu.pl>2017-06-20 17:59:34 +0300
committerTomasz Dwojak <t.dwojak@amu.edu.pl>2017-06-20 17:59:34 +0300
commit76af21950fa6884183f43ea483479495e604e6f5 (patch)
tree8ccd4216b22a01d1fdb31bcf5e1dbfb6815288f2 /scripts
parentb357f082f3d550197bef448ae71f6df02bbbd2bf (diff)
fix path in python serversumma20170621
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/amunmt_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/amunmt_server.py b/scripts/amunmt_server.py
index e4bf0b83..924a9482 100755
--- a/scripts/amunmt_server.py
+++ b/scripts/amunmt_server.py
@@ -5,7 +5,7 @@ import sys
import os
import argparse
-sys.path.append(os.path.dirname(os.path.realpath(__file__)) + '/../build/src')
+sys.path.append(os.path.dirname(os.path.realpath(__file__)) + '/../build')
import libamunmt as nmt
from bottle import request, Bottle, abort