Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-Powers committed Dec 19, 2024
1 parent 2c7aca9 commit 8f8cb17
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions projects/pub_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,14 @@
import logging

import bibtexparser
from django.conf import settings
from django.contrib import messages
from django.contrib.auth.decorators import login_required
from django.db import transaction
from django.db.models import Max
from django.http import Http404
from django.template.loader import render_to_string
from django.template.loader import get_template
from django.shortcuts import render
from django.utils.html import strip_tags
from django.core.exceptions import PermissionDenied
from django.views.decorators.cache import never_cache

from djangoRT import rtModels, rtUtil
from projects.models import Publication, PublicationSource
Expand Down Expand Up @@ -121,7 +117,7 @@ def user_publications(request):
"reviewed_comment": pub.reviewed_comment,
}
)
logger.info(get_template('projects/view_publications.html').template.origin)
logger.info(get_template("projects/view_publications.html").template.origin)
return render(request, "projects/view_publications.html", context)


Expand Down

0 comments on commit 8f8cb17

Please sign in to comment.