File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ def set_sim_auth_key(self, str):
145
145
def generate_and_set_new_sim_auth_key (self ):
146
146
# Don't use all punctuation as some characters cause problems with
147
147
# escaping in XML
148
- chars = string .ascii_letters + string .digits + ".,<> |/$*()#~'@-+=:;_[]{}"
148
+ chars = string .ascii_letters + string .digits + ".,|/$*()#~'@-+=:;_[]{}"
149
149
self .set_sim_auth_key ('' .join (random .choice (chars ) for _ in range (UserProfile .SIM_KEY_SZ )))
150
150
151
151
def get_position_str (self ):
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ def raven_return(request):
30
30
return HttpResponseRedirect ('/' )
31
31
32
32
# Try to log in with the server's response
33
- print ("Calling django authenticate" )
34
33
user = authenticate (response_str = response )
35
34
if user is not None :
36
35
if not user .get_profile ().retired :
You can’t perform that action at this time.
0 commit comments