|  | @@ -41,7 +41,7 @@ class ReportPublicFunsUtils:
 | 
	
		
			
				|  |  |      def get_montho_day():
 | 
	
		
			
				|  |  |          now = datetime.datetime.now()
 | 
	
		
			
				|  |  |          month = now.month
 | 
	
		
			
				|  |  | -        day = now.day
 | 
	
		
			
				|  |  | +        day = now.day - 1
 | 
	
		
			
				|  |  |          return '{}月{}日'.format(month, day)
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @staticmethod
 | 
	
	
		
			
				|  | @@ -62,4 +62,4 @@ class ReportPublicFunsUtils:
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  if __name__ == '__main__':
 | 
	
		
			
				|  |  | -    print(ReportPublicFunsUtils.get_time_range_month())
 | 
	
		
			
				|  |  | +    print(ReportPublicFunsUtils.get_montho_day())
 |