summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rwxr-xr-xrbtools/postreview.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 15c0ad4..928fb95 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -7,6 +7,7 @@ Lead Developers:
Contributors:
* Anthony Cruz
+ * Bryan Halter
* Chris Clark
* Dan Savilonis
* Dana Lacoste
diff --git a/rbtools/postreview.py b/rbtools/postreview.py
index 207f8be..91adb50 100755
--- a/rbtools/postreview.py
+++ b/rbtools/postreview.py
@@ -847,7 +847,7 @@ class ClearCaseClient(SCMClient):
# Call cleartool to get this version and the previous version
# of the element.
curr_version, pre_version = execute(
- ["cleartool", "desc", "-pre", elem_path])
+ ["cleartool", "desc", "-pre", elem_path], split_lines=True)
curr_version = cpath.normpath(curr_version)
pre_version = pre_version.split(':')[1].strip()