Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gotzl committed Mar 7, 2019
1 parent d3ffc28 commit 421d64a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion accservermanager/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@

# THINGS TO CONFIGURE
# the ACC server exe, in case of linux start it with wine
ACCEXEC = ['wine','bin/accServer.exe'] # windows: just set it to 'bin\\accServer.exe' (no list!)
ACCEXEC = ['wine','accServer.exe'] # windows: just set it to 'accServer.exe' (no list!)
ACCSERVER = '/server' # windows: 'C:\\PATH\\TO\\ACC\\server'

# folders where the created configs and instances are stored, will be created if doesn't exist
Expand Down
3 changes: 2 additions & 1 deletion instances/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
from django import forms

from random_word import RandomWords
r = RandomWords()
try: r = RandomWords()
except: r = None

import subprocess, time, datetime, string
from multiprocessing import Value, Process
Expand Down

0 comments on commit 421d64a

Please sign in to comment.