Skip to content

Commit d596202

Browse files
author
Ralf Schlatterbeck
committed
Spacing and CHANGES.txt fixed.
Thanks to alexander smishlajev for pointing me at it -- I just applied my patches without checking for spacing. Sorry. .-- Ralf
1 parent 1961cbc commit d596202

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

roundup/admin.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: admin.py,v 1.101 2006-07-15 10:15:17 schlatterbeck Exp $
19+
# $Id: admin.py,v 1.102 2006-07-17 14:47:23 schlatterbeck Exp $
2020

2121
'''Administration commands for maintaining Roundup trackers.
2222
'''
@@ -1099,8 +1099,8 @@ class colon_separated(csv.excel):
10991099
# all nodes for this class
11001100
for nodeid in cl.getnodeids():
11011101
if self.verbose:
1102-
sys.stdout.write ('Exporting %s - %s\r'%(classname, nodeid))
1103-
sys.stdout.flush ()
1102+
sys.stdout.write('Exporting %s - %s\r'%(classname, nodeid))
1103+
sys.stdout.flush()
11041104
writer.writerow(cl.export_list(propnames, nodeid))
11051105
if hasattr(cl, 'export_files'):
11061106
cl.export_files(dir, nodeid)
@@ -1111,8 +1111,8 @@ class colon_separated(csv.excel):
11111111
# export the journals
11121112
jf = open(os.path.join(dir, classname+'-journals.csv'), 'wb')
11131113
if self.verbose:
1114-
sys.stdout.write ("\nExporting Journal for %s\n" % classname)
1115-
sys.stdout.flush ()
1114+
sys.stdout.write("\nExporting Journal for %s\n" % classname)
1115+
sys.stdout.flush()
11161116
journals = csv.writer(jf, colon_separated)
11171117
map(journals.writerow, cl.export_journals())
11181118
jf.close()
@@ -1168,7 +1168,7 @@ class colon_separated(csv.excel):
11681168
file_props = r
11691169
continue
11701170

1171-
if self.verbose :
1171+
if self.verbose:
11721172
sys.stdout.write('Importing %s - %s\r'%(classname, n))
11731173
sys.stdout.flush()
11741174

0 commit comments

Comments
 (0)