Commit 227e65b1d80bc6110710fba13d13ea7d39f6c194
1 parent
8791e3ec
Exists in
dev
update "pyros shell"
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
pyros.py
... | ... | @@ -226,11 +226,11 @@ def shell(): |
226 | 226 | print("See documentation, chapter '9.6 - Play with the pyros objects' for more details") |
227 | 227 | print("Type 'exit()' to quit") |
228 | 228 | print() |
229 | - os.chdir("src/") | |
229 | + #os.chdir("src/") | |
230 | 230 | # execProcess("python install.py install") |
231 | - if not test_mode(): execProcessFromVenv(" manage.py shell") | |
231 | + if not test_mode(): execProcessFromVenv(" src/manage.py shell") | |
232 | 232 | # Go back to the initial dir |
233 | - os.chdir("../") | |
233 | + #os.chdir("../") | |
234 | 234 | return True |
235 | 235 | |
236 | 236 | ... | ... |