Merge "Fix handling of pip and virtualenv on openSUSE"
diff --git a/files/rpms-suse/general b/files/rpms-suse/general
index c8c234e..98c2795 100644
--- a/files/rpms-suse/general
+++ b/files/rpms-suse/general
@@ -11,7 +11,6 @@
python-cmd2 # dist:opensuse-12.3
python-pylint
python-unittest2
-python-virtualenv
screen
tar
tcpdump
diff --git a/functions b/functions
index d9445fe..5394eef 100644
--- a/functions
+++ b/functions
@@ -926,7 +926,7 @@
elif is_fedora; then
sudo yum remove -y "$@"
elif is_suse; then
- sudo rpm -e "$@"
+ sudo zypper rm "$@"
else
exit_distro_not_supported "uninstalling packages"
fi