Show More
@@ -1268,6 +1268,7 packages = [ | |||
|
1268 | 1268 | 'mercurial.hgweb', |
|
1269 | 1269 | 'mercurial.interfaces', |
|
1270 | 1270 | 'mercurial.pure', |
|
1271 | 'mercurial.templates', | |
|
1271 | 1272 | 'mercurial.thirdparty', |
|
1272 | 1273 | 'mercurial.thirdparty.attr', |
|
1273 | 1274 | 'mercurial.thirdparty.zope', |
@@ -1292,6 +1293,13 packages = [ | |||
|
1292 | 1293 | 'hgext3rd', |
|
1293 | 1294 | 'hgdemandimport', |
|
1294 | 1295 | ] |
|
1296 | ||
|
1297 | for name in os.listdir(os.path.join('mercurial', 'templates')): | |
|
1298 | if name != '__pycache__' and os.path.isdir( | |
|
1299 | os.path.join('mercurial', 'templates', name) | |
|
1300 | ): | |
|
1301 | packages.append('mercurial.templates.%s' % name) | |
|
1302 | ||
|
1295 | 1303 | if sys.version_info[0] == 2: |
|
1296 | 1304 | packages.extend( |
|
1297 | 1305 | [ |
General Comments 0
You need to be logged in to leave comments.
Login now