Mustafa Al Hamad commited on
Commit
2aaef92
·
1 Parent(s): ee57959

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -276,7 +276,7 @@ def greet(operation,filer):
276
  for row in coset.iterrows():
277
  row = list(row)[1]
278
  semester = 1
279
- row['CATALOG_NBR'] = row['CATALOG_NBR'].replace(' ', '')
280
  row['TERM'] = str(row['TERM'])
281
  if row['TERM'][-1] == 2:
282
  semester = 2
 
276
  for row in coset.iterrows():
277
  row = list(row)[1]
278
  semester = 1
279
+ row['CATALOG_NBR'] = str(row['CATALOG_NBR']).replace(' ', '')
280
  row['TERM'] = str(row['TERM'])
281
  if row['TERM'][-1] == 2:
282
  semester = 2