mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-02-12 13:01:51 +00:00
Bugfix: Differing Split Characters
This commit is contained in:
parent
1fc875fa7d
commit
6b9a3754d8
1 changed files with 1 additions and 1 deletions
|
@ -625,7 +625,7 @@ def create_shared_pool():
|
|||
return render_template('create_pool.html', user=user)
|
||||
elif request.method == 'POST':
|
||||
name = request.form['name']
|
||||
members = request.form['members'].split(';')
|
||||
members = request.form['members'].split(',')
|
||||
description = request.form['description']
|
||||
if 'rtp' in session['userinfo']['groups']:
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue