Write out the options tag in the log message of imports only if we actually have
authorSimon Hausmann <simon@lst.de>
Mon, 11 Jun 2007 08:01:58 +0000 (10:01 +0200)
committerSimon Hausmann <simon@lst.de>
Mon, 11 Jun 2007 08:01:58 +0000 (10:01 +0200)
options

git-p4

diff --git a/git-p4 b/git-p4
index ff56181310988de13f5eef0232c255bdcc4d1910..e380c149b48bb72ccbc28da9f97be7127e29874a 100755 (executable)
--- a/git-p4
+++ b/git-p4
@@ -765,12 +765,11 @@ class P4Sync(Command):
 
         self.gitStream.write("data <<EOT\n")
         self.gitStream.write(details["desc"])
-        self.gitStream.write("\n[git-p4: depot-paths = \"%s\": change = %s: "
-                             "options = %s]\n"
-                             % (','.join (branchPrefixes), details["change"],
-                                details['options']
-                                ))
-        self.gitStream.write("EOT\n\n")
+        self.gitStream.write("\n[git-p4: depot-paths = \"%s\": change = %s"
+                             % (','.join (branchPrefixes), details["change"]))
+        if len(details['options']) > 0:
+            self.gitStream.write(": options = %s" % details['options'])
+        self.gitStream.write("]\nEOT\n\n")
 
         if len(parent) > 0:
             if self.verbose: