-
-
Notifications
You must be signed in to change notification settings - Fork 335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Django main #528
Django main #528
Conversation
Codecov Report
@@ Coverage Diff @@
## master #528 +/- ##
=======================================
Coverage 84.60% 84.60%
=======================================
Files 51 51
Lines 2059 2059
=======================================
Hits 1742 1742
Misses 317 317
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some minor things, other than that this is good. Thanks!
silk/profiling/profiler.py
Outdated
@@ -102,7 +102,7 @@ def __enter__(self): | |||
'start_time': timezone.now(), | |||
} | |||
else: | |||
Logger.warn('Cannot execute silk_profile as silk is not installed correctly.') | |||
Logger.warning('Cannot execute silk_profile as silk is not installed correctly.') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! Could we rename the variable to logger
, too?
@@ -1,7 +1,7 @@ | |||
from django.conf.urls import include, url | |||
from django.urls import include, path |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from django.urls import include, path | |
from django.urls import include, re_path |
|
||
urlpatterns = [ | ||
url( | ||
path( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
path( | |
re_path( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some minor things, other than that this is good. Thanks!
7728907
to
94e76a5
Compare
94e76a5
to
13210c6
Compare
Thanks @jezdez for your review. I've addressed your comments. |
No description provided.