Browse Source

Fixed path

root 9 years ago
parent
commit
9c16bc17eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      server.py

+ 1 - 1
server.py

@@ -22,7 +22,7 @@ def server(port, bindTo):
 		conn, addr = s.accept()
 
 		report_id = myrandom(10)
-		filename = 'reports/' + datetime.date.today().strftime('%Y-%m-%d_') + report_id + '.gz'
+		filename = '/opt/debugserver/reports/' + datetime.date.today().strftime('%Y-%m-%d_') + report_id + '.gz'
 
 		f = open(filename, 'w')
 		while 1: