summaryrefslogtreecommitdiff
path: root/pbr/packaging.py
diff options
context:
space:
mode:
Diffstat (limited to 'pbr/packaging.py')
-rw-r--r--pbr/packaging.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbr/packaging.py b/pbr/packaging.py
index 8e6ab4a..366f21e 100644
--- a/pbr/packaging.py
+++ b/pbr/packaging.py
@@ -220,7 +220,7 @@ def _run_shell_command(cmd, throw_on_error=False, buffer=True):
raise distutils.errors.DistutilsError(
"%s returned %d" % (cmd, output.returncode))
if len(out) == 0 or not out[0] or not out[0].strip():
- return None
+ return ''
return out[0].strip().decode('utf-8')