Skip to content

Commit c41186c

Browse files
committedJan 15, 2018
Fix indentation using modified scripts
1 parent f2a0c77 commit c41186c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎scripts/context_help_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
hash.update(sys.argv[1])
4141
# generate the context id by converting the first 12 characters of the hash
4242
# to decimal
43-
context_id = int(hash.hexdigest()[:12],16)
43+
context_id = int(hash.hexdigest()[:12], 16)
4444
# print the result
4545
print context_id
4646
else:

0 commit comments

Comments
 (0)
Please sign in to comment.