Show More
@@ -358,7 +358,7 b' class InteractiveShellApp(Configurable):' | |||
|
358 | 358 | """Run files from profile startup directory""" |
|
359 | 359 | startup_dir = self.profile_dir.startup_dir |
|
360 | 360 | startup_files = [] |
|
361 | if self.exec_PYTHONSTARTUP: | |
|
361 | if self.exec_PYTHONSTARTUP and not (self.file_to_run or self.code_to_run or self.module_to_run): | |
|
362 | 362 | if os.environ.get('PYTHONSTARTUP', False): |
|
363 | 363 | startup_files.append(os.environ['PYTHONSTARTUP']) |
|
364 | 364 | startup_files += glob.glob(os.path.join(startup_dir, '*.py')) |
General Comments 0
You need to be logged in to leave comments.
Login now