Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
fd693388
Commit
fd693388
authored
Jan 29, 2012
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
codereview: fix initialization check
R=golang-dev, r CC=golang-dev
https://golang.org/cl/5596046
parent
4a913875
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
lib/codereview/codereview.py
lib/codereview/codereview.py
+4
-1
No files found.
lib/codereview/codereview.py
View file @
fd693388
...
...
@@ -2177,9 +2177,12 @@ def reposetup(ui, repo):
global
codereview_disabled
global
defaultcc
# reposetup gets called both for the local repository
# and also for any repository we are pulling or pushing to.
# Only initialize the first time.
global
codereview_init
if
codereview_init
:
r
aise
hg_util
.
Abort
(
"codereview extension initialized twice"
)
r
eturn
codereview_init
=
True
remote
=
ui
.
config
(
"paths"
,
"default"
,
""
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment