Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/extensions/bin/createNightlies.py

Issue 29569630: Noissue - Added flake8-docstrings (sitescripts) (Closed)
Patch Set: Created Oct. 9, 2017, 1:32 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tox.ini » ('j') | tox.ini » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/extensions/bin/createNightlies.py
===================================================================
--- a/sitescripts/extensions/bin/createNightlies.py
+++ b/sitescripts/extensions/bin/createNightlies.py
@@ -132,7 +132,7 @@
Create a repository copy in a temporary directory
"""
self.tempdir = tempfile.mkdtemp(prefix=self.config.repositoryName)
- command = ['hg', 'clone', '-q', self.config.repository, '-u',
+ command = ['hg', 'clone', '-q', self.config.repository, '-u',
Sebastian Noack 2017/10/09 01:56:17 For some reason flake8 didn't detect this redundan
Vasily Kuznetsov 2017/10/09 20:39:47 This is really strange... how are we supposed to t
Sebastian Noack 2017/10/10 22:01:48 I figured out what is going on here. This wasn't r
self.config.revision, self.tempdir]
subprocess.check_call(command)
« no previous file with comments | « no previous file | tox.ini » ('j') | tox.ini » ('J')

Powered by Google App Engine
This is Rietveld