Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gitlab-assignments
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sneh Koul
gitlab-assignments
Commits
c2cc90c1
Commit
c2cc90c1
authored
8 years ago
by
Nick Lee
Browse files
Options
Downloads
Patches
Plain Diff
remove debugging line
parent
84011356
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
clone.py
+0
-1
0 additions, 1 deletion
clone.py
with
0 additions
and
1 deletion
clone.py
+
0
−
1
View file @
c2cc90c1
...
...
@@ -234,7 +234,6 @@ for url_info in urls:
for
event
in
project_events
:
# Only care about project events that are pushes to master branch
if
event
[
'
action_name
'
]
in
[
'
pushed to
'
,
'
pushed new
'
]
and
event
[
'
data
'
][
'
ref
'
]
==
'
refs/heads/master
'
:
print
(
"
created_at = %s
"
%
event
[
'
created_at
'
])
# Gitlab has time in a format not easily read by Python's datetime,
# so do a little formatting with regex.
created_at_py
=
re
.
sub
(
'
([\d]{2})\.[\d]{3}(.[\d]{2}):([\d]{2})
'
,
r
"
\1\2\3
"
,
event
[
'
created_at
'
])
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment