summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/Changelog4
-rw-r--r--portato/gui/gui_helper.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/doc/Changelog b/doc/Changelog
index 36b3129..fcac18b 100644
--- a/doc/Changelog
+++ b/doc/Changelog
@@ -1,3 +1,7 @@
+next:
+- new icon by p4r4d0x
+- sync command now accepts "&&"
+
0.7.4.2:
- bugfix in PortageSystem
diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py
index 1f368de..40f3cee 100644
--- a/portato/gui/gui_helper.py
+++ b/portato/gui/gui_helper.py
@@ -633,10 +633,8 @@ class EmergeQueue:
try:
idx = cmd.index("&&")
except ValueError: # no && in there -> normal behavior
- debug("w/o &&", cmd)
self._emerge([],[],[], command = cmd)
else:
- debug("with &&", cmd[:idx])
self._emerge([],[],[], command = cmd[:idx])
if startThread: