Skip to content
Browse files

fix problem with sgf uploading (#34)

  • Loading branch information...
1 parent 78c3aee commit 5472f7084bbc7842059bc458143257a07b750dd2 @dimykus dimykus committed
Showing with 1 addition and 1 deletion.
  1. +1 −1 interface/server/goServer.py
View
2 interface/server/goServer.py
@@ -75,7 +75,7 @@ def deal_post_data(self):
try:
out = open(fn, 'wb')
except IOError:
- return (False, "Can't create file to write, do you have permission to write?"+fn)
+ return (False, "Can't create file to write, do you have permission to write?")
preline = self.rfile.readline()
remainbytes -= len(preline)

0 comments on commit 5472f70

Please sign in to comment.
Something went wrong with that request. Please try again.