From d6df617ca015ff18c693de07f81a4545d80b4e1e Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Wed, 29 Apr 2020 04:55:33 +0500 Subject: [PATCH] restore encoding --- IncBackups/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IncBackups/views.py b/IncBackups/views.py index 4739c04cb..fe229f0c9 100644 --- a/IncBackups/views.py +++ b/IncBackups/views.py @@ -1,4 +1,4 @@ -# -*- coding: utaddDestinationf-8 -*- +# -*- coding: utf-8 -*- from django.shortcuts import render from plogical.acl import ACLManager @@ -100,7 +100,7 @@ def addDestination(request): execPath = "/usr/local/CyberCP/bin/python " + virtualHostUtilities.cyberPanel + "/plogical/backupUtilities.py" execPath = execPath + " submitDestinationCreation --ipAddress " + ipAddress + " --password " \ - + password + " --port " + port + + password + " --port " + port + ' --user %s' % ('root') if os.path.exists(ProcessUtilities.debugPath): logging.writeToFile(execPath)