summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-12-11 21:45:37 +0100
committerJelmer Vernooij <jelmer@samba.org>2010-12-11 21:45:37 +0100
commit4679bf2b144686f16767d68d453cca88e69cf429 (patch)
tree0a0be653bf46974faec1fbd769b1967632a532f3
parent7bc693cd241885f1f59b92fa86c2bd5abaecbb77 (diff)
downloadbzr-fastimport-4679bf2b144686f16767d68d453cca88e69cf429.tar.gz
Fix indentation when running p4.
-rw-r--r--NEWS2
-rw-r--r--exporters/__init__.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 8d63a5d..58c64a1 100644
--- a/NEWS
+++ b/NEWS
@@ -23,6 +23,8 @@ Bug fixes
* In plain mode, don't export multiple authors. (David Kilzer, #496677)
+* Fix indentation when starting p4 fails. (Jelmer Vernooij)
+
0.9 28-Feb-2010
===============
diff --git a/exporters/__init__.py b/exporters/__init__.py
index e9bf1f6..6d282d6 100644
--- a/exporters/__init__.py
+++ b/exporters/__init__.py
@@ -280,7 +280,7 @@ class PerforceExporter(_Exporter):
retcode = p4_fast_export.main([source])
finally:
sys.stdout = original_stdout
- self.report_results(retcode, destination)
+ self.report_results(retcode, destination)
class SubversionExporter(_Exporter):