summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--subcmds/sync.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py
index fff1281a..d3f6adc1 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -13,6 +13,7 @@
13# See the License for the specific language governing permissions and 13# See the License for the specific language governing permissions and
14# limitations under the License. 14# limitations under the License.
15 15
16from optparse import SUPPRESS_HELP
16import os 17import os
17import re 18import re
18import subprocess 19import subprocess
@@ -51,7 +52,7 @@ the manifest.
51 help='do not verify repo source code') 52 help='do not verify repo source code')
52 p.add_option('--repo-upgraded', 53 p.add_option('--repo-upgraded',
53 dest='repo_upgraded', action='store_true', 54 dest='repo_upgraded', action='store_true',
54 help='perform additional actions after a repo upgrade') 55 help=SUPPRESS_HELP)
55 56
56 def _Fetch(self, *projects): 57 def _Fetch(self, *projects):
57 fetched = set() 58 fetched = set()