From 2f676774e9982c3dee8671cf9d6210332e71feb5 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sat, 11 Dec 2021 15:40:46 -0600 Subject: [PATCH] Bugfix --- tailbone/views/importing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tailbone/views/importing.py b/tailbone/views/importing.py index ecb2ea02..b63e4d43 100644 --- a/tailbone/views/importing.py +++ b/tailbone/views/importing.py @@ -478,7 +478,7 @@ And here is the output: if runas: if typ == 'true': - cmd.apend('--runas={}'.format(runas)) + cmd.append('--runas={}'.format(runas)) else: cmd.extend(['--runas', runas])