diff options
author | Kali Kaneko <kali@leap.se> | 2017-08-15 22:14:24 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-08-16 17:30:20 -0400 |
commit | 7d497583461639640d211b7a3dfc34931e8f3e54 (patch) | |
tree | ad0da05dae4f1c81efab7e0767813b91ca0bf9e0 | |
parent | ea3adb9194111a27e17b6a6bceac02f9974db919 (diff) |
pep8
-rw-r--r-- | pkg/tools/upgrade_all.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/tools/upgrade_all.py b/pkg/tools/upgrade_all.py index 5db9c172..0732285d 100644 --- a/pkg/tools/upgrade_all.py +++ b/pkg/tools/upgrade_all.py @@ -5,8 +5,8 @@ import pip from subprocess import call if not os.environ.get('VIRTUAL_ENV'): - print('[!] Should call this script inside a virtualenv, I do not want to mess ' - 'with your system. Bye!') + print('[!] Should call this script inside a virtualenv, I do not want to ' + 'mess with your system. Bye!') sys.exit(1) for dist in pip.get_installed_distributions(): |