Changeset - 2786730e56e0
[Not reviewed]
default
0 2 0
Mads Kiilerich - 6 years ago 2020-02-04 03:05:15
mads@kiilerich.com
Grafted from: f7cb2ee1e9d0
scripts: use explicit relative imports of contributor_data

Avoid any ambiguity ... and avoid pytype failing to find
scripts/contributor_data.py when scripts isn't in sys.path.
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
scripts/shortlog.py
Show inline comments
 
@@ -6,13 +6,13 @@ Kallithea script for generating a quick 
 
commit counts in a given revision set.
 
"""
 
import argparse
 
import os
 
from collections import Counter
 

	
 
import contributor_data
 
from . import contributor_data
 

	
 

	
 
def main():
 

	
 
    parser = argparse.ArgumentParser(description='Generate a list of committers and commit counts.')
 
    parser.add_argument('revset',
scripts/update-copyrights.py
Show inline comments
 
@@ -39,13 +39,13 @@ contributor, the legal entity is given c
 
"""
 

	
 
import os
 
import re
 
from collections import defaultdict
 

	
 
import contributor_data
 
from . import contributor_data
 

	
 

	
 
def sortkey(x):
 
    """Return key for sorting contributors "fairly":
 
    * latest contribution
 
    * first contribution
0 comments (0 inline, 0 general)