diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2015-11-21 13:11:35 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2015-11-21 13:11:35 -0500 |
commit | a62ac34c8195b45efb75c693d20bd6afb7ab2b70 (patch) | |
tree | 90fc4771ab528bd11ba27ad84ba66a1cc566cfd4 /scripts/cbc_repo2html | |
parent | 8a68a451d435f62b0f666d748d27afc522d0a860 (diff) | |
download | cbc-a62ac34c8195b45efb75c693d20bd6afb7ab2b70.tar.gz |
Fix typo
Diffstat (limited to 'scripts/cbc_repo2html')
-rwxr-xr-x | scripts/cbc_repo2html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cbc_repo2html b/scripts/cbc_repo2html index 87bbc81..0eaffad 100755 --- a/scripts/cbc_repo2html +++ b/scripts/cbc_repo2html @@ -28,7 +28,7 @@ if __name__ == '__main__': print('<head>') print('<title>Repository Contents</title>') print('</head>') - print('<body') + print('<body>') print('<pre>') for key, subdict in sorted(repodata['packages'].items()): print("{0:50s} {1:>40s} {2:>20d}kb".format(key, subdict['md5'], subdict['size'])) |