PhoenixStormJr commited on
Commit
f0bec43
·
verified ·
1 Parent(s): 8ba281a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -10,6 +10,7 @@ if(commandList[0] == "cd"):
10
  output = subprocess.run(['pwd'], stdout=subprocess.PIPE).stdout.decode('utf-8')
11
  st.write(f"{command}: \n {output}")
12
  else:
13
- st.write(commandList)
 
14
  output = subprocess.run(commandList, stdout=subprocess.PIPE).stdout.decode('utf-8')
15
  st.write(f"{command}: \n {output}")
 
10
  output = subprocess.run(['pwd'], stdout=subprocess.PIPE).stdout.decode('utf-8')
11
  st.write(f"{command}: \n {output}")
12
  else:
13
+ st.write(f"\"{commandList}\"")
14
+ st.write(f"\"{len(commandList)}\"")
15
  output = subprocess.run(commandList, stdout=subprocess.PIPE).stdout.decode('utf-8')
16
  st.write(f"{command}: \n {output}")