mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 01:09:22 +01:00
PyLinkNCWithUtils: don't assume mode args are strings
This commit is contained in:
parent
61c8677802
commit
6e7c58ee36
@ -1111,7 +1111,8 @@ class PyLinkNetworkCoreWithUtils(PyLinkNetworkCore):
|
||||
modelist = '+' + modelist
|
||||
if args:
|
||||
# Add the args if there are any.
|
||||
modelist += ' %s' % ' '.join(args)
|
||||
modelist += ' '
|
||||
modelist += ' '.join((str(arg) for arg in args))
|
||||
return modelist
|
||||
|
||||
@classmethod
|
||||
|
Loading…
Reference in New Issue
Block a user