diff options
author | Maximilian Hils <git@maximilianhils.com> | 2019-11-21 14:13:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-21 14:13:08 +0100 |
commit | 3550bdfe006ba321c706b16f58a6b0d5b4e744b7 (patch) | |
tree | 46a1eb299a89866668a85fb2045f616377e538dc /examples | |
parent | 3a7ca3e1e7cc4e0d1d8a6702cbf443f7cddaf00f (diff) | |
parent | f7a3e903ac69950ef862757886ed83506b7d1bd9 (diff) | |
download | mitmproxy-3550bdfe006ba321c706b16f58a6b0d5b4e744b7.tar.gz mitmproxy-3550bdfe006ba321c706b16f58a6b0d5b4e744b7.tar.bz2 mitmproxy-3550bdfe006ba321c706b16f58a6b0d5b4e744b7.zip |
Merge pull request #3693 from typoon/fix-command-bar-issue-3259
Improve Command Bar UX
Diffstat (limited to 'examples')
-rw-r--r-- | examples/complex/remote_debug.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/complex/remote_debug.py b/examples/complex/remote_debug.py index fa6f3d33..4b117bdb 100644 --- a/examples/complex/remote_debug.py +++ b/examples/complex/remote_debug.py @@ -15,5 +15,5 @@ Usage: def load(l): - import pydevd - pydevd.settrace("localhost", port=5678, stdoutToServer=True, stderrToServer=True) + import pydevd_pycharm + pydevd_pycharm.settrace("localhost", port=5678, stdoutToServer=True, stderrToServer=True, suspend=False) |