fix lack of comma in flagfile list
When flagfile option is omitted, ryu-manager cannot find "/etc/ryu/ryu.conf". Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:

committed by
FUJITA Tomonori

parent
2e3c0c0a9e
commit
63c8a15e7c
@@ -37,7 +37,7 @@ def import_module(modname):
|
||||
return sys.modules[modname]
|
||||
|
||||
|
||||
RYU_DEFAULT_FLAG_FILE = ('ryu.conf', 'etc/ryu/ryu.conf' '/etc/ryu/ryu.conf')
|
||||
RYU_DEFAULT_FLAG_FILE = ('ryu.conf', 'etc/ryu/ryu.conf', '/etc/ryu/ryu.conf')
|
||||
|
||||
|
||||
def find_flagfile(default_path=RYU_DEFAULT_FLAG_FILE):
|
||||
|
Reference in New Issue
Block a user