mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
[mod] uses + for strings
This commit is contained in:
parent
ac9f61c7b1
commit
ac901528c3
1 changed files with 1 additions and 1 deletions
|
@ -666,7 +666,7 @@ def _name_selfCA():
|
|||
|
||||
|
||||
def _tail(n, filePath):
|
||||
stdin, stdout = os.popen2("tail -n " + str(n) + " " + filePath)
|
||||
stdin, stdout = os.popen2("tail -n %s '%s'" % (n, filePath))
|
||||
stdin.close()
|
||||
lines = stdout.readlines()
|
||||
stdout.close()
|
||||
|
|
Loading…
Add table
Reference in a new issue